/* Wrapper pour les tableaux avec bouton */
.pa-table-wrapper {
    position: relative;
    margin: 20px 0;
    padding: 0 !important;
}

/* Bouton d'affichage/masquage */
.pa-table-toggle-btn {
    display: block;
    margin: 20px auto 0;
    padding: 11px 35px;
    background-color: #000;
    color: #FFFFFF !important;
    border: 1px solid #000;
    border-radius: 5px;
    font-family: "New Hero", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.pa-table-toggle-btn:hover {
    background-color: #fff;
    color: #000 !important;
}

.pa-table-toggle-btn:focus {
    outline: 2px solid #4E9DD8;
    outline-offset: 2px;
}

/* Lignes cachées du tableau */
.pa-table-hidden-row {
    display: none;
}

/* Animation pour le déroulement */
.pa-table-wrapper table tbody tr {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

