/* Section Association - Comité */
.association-section .committee-members {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.association-section .member-image-wrapper {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    max-width: 200px;
    max-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: var(--box-shadow, 0 5px 15px rgba(0,0,0,0.1));
    background: var(--light-bg, #f5f6fa);
}

.association-section .member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(0);
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.association-section .member-image-wrapper:hover img {
    filter: blur(8px);
}

.association-section .member-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(44, 62, 80, 0.7);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.5rem;
    text-align: center;
}

.association-section .member-image-wrapper:hover .member-overlay {
    opacity: 1;
}

.association-section .member-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Bouton Voir le Statut - réutilise btn-primary de auth.css */
.association-section .committee-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.association-section .committee-actions .btn-primary {
    text-decoration: none;
}

.association-section .member-badge {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(61, 134, 46, 0.9);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
}

/* Styles pour la liste des missions */
.association-intro ul,
.association-intro ol {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1rem 2rem;
}

.association-intro ol {
    counter-reset: item;
}

.association-intro li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.association-intro ol li {
    counter-increment: item;
}

.association-intro li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--third-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.association-intro ol li::before {
    content: counter(item) ". ";
}

/* Mobile : membres du comité empilés verticalement */
@media (max-width: 768px) {
    .association-section .committee-members {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .association-section .member-image-wrapper {
        overflow: visible;
        height: auto;
        width: auto;
        min-width: unset;
        min-height: unset;
        max-width: unset;
        max-height: unset;
        border-radius: 0;
        box-shadow: none;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .association-section .member-image-wrapper img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        box-shadow: var(--box-shadow, 0 5px 15px rgba(0,0,0,0.15));
        filter: none !important;
    }

    .association-section .member-overlay {
        position: relative;
        inset: auto;
        opacity: 1 !important;
        background: none;
        border-radius: 0;
        padding: 0;
        gap: 0.4rem;
    }

    .association-section .member-name {
        color: var(--text-color, #2c3e50);
        text-shadow: none;
    }

    .association-section .member-badge {
        background: rgba(61, 134, 46, 0.15);
        color: rgb(36, 90, 22);
    }
}

/* Styles pour les tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

th, td {
    border: 1px solid var(--primary-color);
    padding: 12px;
    text-align: left;
}

th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}
