body {
    font-family: Arial, sans-serif;
    background-color: #c87a54;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header {
    background-color: #d9d9d9;
    color: #fff;
    padding: 0px;
    text-align: center;
    width: 100%;
}
header img {
    max-width: 40vh;
}
.container {
    padding: 2px;
    width: 80%;
    max-width: 800px;
    height: 65vh;
    overflow-y: auto;
    background-color: #d9d9d9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    scrollbar-width: none; /* Pour Firefox */
    -ms-overflow-style: none; /* Pour Internet Explorer et Edge */
}
.container::-webkit-scrollbar {
    display: none; /* Pour Chrome, Safari et Opera */
}
footer {
    background-color: #9d4c06;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
.button-container {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    width: 100%;
}
.button-container button {
    background-color: #9d4c06;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.button-container button:hover {
    background-color: #7a3b04;
}
.menu-category {
    margin-bottom: 20px;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
.nav-bar {
    display: flex;
    justify-content: center;
    background-color: #d9d9d9;
    padding: 3px;
    width: 100%;
    position: sticky; /* Utilisez position: sticky pour fixer la barre de navigation dans le div */
    top: 0; /* Positionnez la barre de navigation en haut du conteneur */
    z-index: 1000; /* Assurez-vous que la barre de navigation reste au-dessus des autres éléments */
}
.nav-bar select {
    background-color: #9d4c06;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: inherit;
    font-weight: bold;
    font-size: unset;
    text-align: center; /* Centrer le texte */
    text-align-last: center; /* Centrer le texte dans les options */
}
.nav-bar select:hover {
    background-color: #c87a54;
}
#spanlist {

    width: 80%;
}

.button-bar {
    display: flex;
    justify-content: center;
    background-color: #9d4c06;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
}

.button-bar button {
    background-color: #fff;
    color: #9d4c06;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    padding: 5PX;
    margin: 2px;
    width: 23vh;
}

.button-bar button:hover {
    background-color: #c87a54;
    color: white;
}
