html {
    color: white;
}

header nav {
    background-color: #61947A;
}

header {
    box-shadow: 8.0px 16.0px 16.0px hsl(0deg 0% 0% / 0.25);
}

.menu {
    position: relative;
}

.menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu:hover::after {
    opacity: 1;
}

.mainsearch {
    background-color: aliceblue;
}

.title {
    margin: auto;
    text-align: center;
}

.catégories {
    gap: 1rem;
}

.catégories div {
    width: 75%;
    background: #F5F5F5;
    text-align: center;
    margin: auto;
    padding: 2.5rem;
    border-radius: 10px;
    font-size: 2rem;
}

.catégories div:hover {
    background: lightgray;
}

.recherche {
    margin: auto;
}

.erreur {
    color: red;
}

/* Correction : S'assurer que seul le header garde son background */
header nav {
    background-color: #61947A !important;
}

/* Enlever tout background de la pagination */
.pagination-wrapper {
    background: none !important;
}

.pagination {
    background: none !important;
}

.pagination .page-item {
    background: none !important;
}

.pagination .page-link {
    background: none !important;
    border: none;
}