/* Fichier : css/probables.css */

#probables-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #17a2b8; /* Turquoise */
    margin-bottom: 20px;
}

/* Astuce : Afficher les champs sur 2 lignes pour gagner de la place */
.form-row-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row {
    flex: 1; /* Chaque champ prend la même largeur */
    display: flex;
    flex-direction: column;
}

/* Focus Turquoise */
#probables-form input:focus, 
#probables-form select:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
    outline: none;
}

#probables-btn {
    background-color: #17a2b8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

#probables-btn:hover {
    background-color: #138496;
}

/* Style du tableau spécifique aux probables */
#probables-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

#probables-table th {
    background-color: #e9ecef; /* Entête grise claire */
    color: #495057;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

#probables-table td {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.prob-entree { color: #28a745; font-weight: bold; }
.prob-sortie { color: #dc3545; font-weight: bold; }