.blocRechercheWrapper {
    min-height:160px;
}

/* FILTRES */

.s-documents-admin__filtres {
    border-left: 5px solid #f7da38;
}

.s-documents-admin__filtres select:focus,
.s-documents-admin__filtres input[type="date"]:focus,
.s-documents-admin__filtres input[type="text"]:focus {
    border-color: #ae9b27;
    box-shadow: 0 0 0 1px rgba(150, 132, 30, 0.15);
}


/* COMPTEUR RÉSULTATS */

#resultCount {
    background: linear-gradient(to right, rgba(247, 218, 56, 0.15) 0%, rgba(178, 57, 147, 0.05) 100%);
    border-left: 5px solid #cab52d;
    box-shadow: 0 2px 8px rgba(150, 132, 30, 0.1);
}


/* TABLEAU */

.s-documents-admin__resultat:hover {
    background: linear-gradient(to right, rgba(207, 66, 171, 0.08) 0%, rgba(178, 57, 147, 0.05) 100%);
    box-shadow: inset 4px 0 0 #b23993;
    transform: translateX(2px);
    transition: all 0.3s ease;
}

a.s-documents-admin__lien {
    color: #551c46;
    transition: color 0.2s ease;
}

a.s-documents-admin__lien:hover {
    color: #1c0918;
}

.s-documents-admin__table .s-documents-admin__resultat a.s-documents-admin__download {
    color: #b23993;
    border: 1px solid #832a6c;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.s-documents-admin__table .s-documents-admin__resultat a.s-documents-admin__download:hover {
    background: #832a6c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(178, 57, 147, 0.2);
}

.s-documents-admin__status {
    transition: all 0.3s ease;
}

.s-documents-admin__status--EnLigne {
    background: radial-gradient(circle, #1dbf73 0%, #17a85e 100%);
    box-shadow: 0 0 5px rgba(29, 191, 115, 0.5);
}

.s-documents-admin__status--Archive {
    background: radial-gradient(circle, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
}

.s-documents-admin__resultat:hover .s-documents-admin__status {
    transform: scale(1.1);
}


/* PAGINATION */

.o-pagination-reglette .o-pagination-list a, .o-pagination-reglette .o-pagination-list strong {
    border-color: #c3ae2c;
    height: 3rem;
    min-width: 3rem;
}

.o-pagination-reglette .o-pagination-list a:hover, .o-pagination-reglette .o-pagination-list a:focus {
    background-color: #c3ae2c;
    border-color: #c3ae2c
}



/* ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.s-documents-admin__resultat {
    animation: fadeInUp 0.4s ease backwards;
}

.s-documents-admin__resultat:nth-child(1) { animation-delay: 0.05s; }
.s-documents-admin__resultat:nth-child(2) { animation-delay: 0.1s; }
.s-documents-admin__resultat:nth-child(3) { animation-delay: 0.15s; }
.s-documents-admin__resultat:nth-child(4) { animation-delay: 0.2s; }
.s-documents-admin__resultat:nth-child(5) { animation-delay: 0.25s; }
.s-documents-admin__resultat:nth-child(6) { animation-delay: 0.3s; }
.s-documents-admin__resultat:nth-child(7) { animation-delay: 0.35s; }
.s-documents-admin__resultat:nth-child(8) { animation-delay: 0.4s; }
.s-documents-admin__resultat:nth-child(9) { animation-delay: 0.45s; }
.s-documents-admin__resultat:nth-child(10) { animation-delay: 0.5s; }

/* Header */

@media screen and (max-width: 792px) {
    .o-icon--menu::before {
        content: none;
    }

    .blocRechercheWrapper {
        min-height: 0;
    }

    .c-header {
        height: 10rem;
    }

    .c-ariane {
        display:none;
    }
}










