/* Container du dropdown */
.dropdown-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.dropdown-container:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header du dropdown */
/* .dropdown-header { */
/*     padding: 20px; */
/*     cursor: pointer; */
/*     display: flex; */
/*     justify-content: space-between; */
/*     align-items: center; */
/*     background: linear-gradient(to right, #f8f9fa, #fff); */
/*     border-radius: 8px; */
/*     transition: background 0.3s ease; */
/*     user-select: none; */
/* } */
.dropdown-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 15px;
/*     align-items: center; */
    background: linear-gradient(to right, #f8f9fa, #fff);
    border-radius: 8px;
    transition: background 0.3s ease;
    user-select: none;
}

.dropdown-header:hover {
    background: linear-gradient(to right, #e9ecef, #f8f9fa);
}

/* Section info (icône + texte) */
.dropdown-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.dropdown-icon {
/*     width: 50px; */
/*     height: 50px; */
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.dropdown-text {
    flex: 1;
}

.dropdown-title {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
}

.dropdown-description {
    margin: 0;
/*     color: #7f8c8d; */
    color: #2c3e50;
    font-size: 18px;
/*     font-weight: bold; */
    line-height: 1.4;
}

/* Flèche */
.dropdown-arrow {
    font-size: 20px;
    color: #2c3e50;
    transition: transform 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.dropdown-arrow.expanded {
    transform: rotate(180deg);
}

/* Contenu du dropdown */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.dropdown-content.expanded {
    max-height: 20000px;
}

.dropdown-body {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

/* Section d'informations */
.info-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.info-section p {
    margin: 5px 0;
    color: #34495e;
    font-size: 18px;
}

.footer-info {
    margin-top: 20px;
    margin-bottom: 0;
    background: #e8f4f8;
    border-left: 4px solid #3498db;
}

.note {
    font-style: italic;
    color: #5a6c7d;
    margin: 0 !important;
}

/* Wrapper du tableau */
.table-wrapper {
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Style de base pour le tableau */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table thead {
    background: #34495e;
    color: white;
}

.data-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.data-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

.data-table td {
    padding: 12px 15px;
    color: #34495e;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dropdown-icon {
        width: 40px;
        height: 40px;
    }
    
    .dropdown-title {
        font-size: 16px;
    }
    
    .dropdown-description {
        font-size: 13px;
    }
    
    .dropdown-header {
        padding: 15px;
    }
    
    .dropdown-body {
        padding: 15px;
    }
}