/* put your own styles to customize and override the theme */

/* ===== Section Card — composant partagé ===== */
.section-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.section-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-card>h5 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
}

.section-card>h5 i {
    margin-right: 10px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.section-card .form-group label {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.section-card .form-group label {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* Labels compacts (filtres, petits champs) — conservent leur taille originale */
.section-card .form-group label.small {
    font-size: 0.875rem;
    font-weight: normal;
}

.section-card .form-group label abbr {
    color: #dc3545;
}

.section-card .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-card .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ===== Fin Section Card ===== */