/* Styles pour le tableau d'éligibilité */
.eligibility-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.eligibility-table th, 
.eligibility-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.eligibility-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.eligibility-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.eligibility-table tr:hover {
    background-color: #f1f1f1;
}

.eligibility-table th.blue {
    background-color: #0072CE;
    color: white;
}

.eligibility-table th.yellow {
    background-color: #F6BE00;
    color: black;
}

.eligibility-table th.purple {
    background-color: #6A1B9A;
    color: white;
}

.eligibility-table th.pink {
    background-color: #E91E63;
    color: white;
}

/* Styles pour la section schéma de déperdition */
.deperdition-schema {
    margin: 30px 0;
    text-align: center;
}

.deperdition-schema img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.deperdition-schema-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.deperdition-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.deperdition-info-item {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.deperdition-info-item h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

/* Styles responsifs */
@media (max-width: 768px) {
    .eligibility-table {
        font-size: 14px;
    }
    
    .eligibility-table th, 
    .eligibility-table td {
        padding: 8px 10px;
    }
    
    .deperdition-info-item {
        min-width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .eligibility-table {
        font-size: 12px;
    }
    
    .eligibility-table th, 
    .eligibility-table td {
        padding: 6px 8px;
    }
}
