body {
    font-family: 'Cabin', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.menu-area {
    margin-bottom: 2rem;
}

.menu-area h2 {
    margin-top: 1.5rem;
    border-bottom: 2px solid #57b6e6;
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1rem;
}

.menu-item h3 {
    display: block;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    max-width: 90%
}
.menu-item h3 span {
  position: absolute;
  right: 0px;
  margin-right: 15px;  
}
.ingredients, .allergens {
    font-size: 1rem;
    color: #555;

}

.ingredients {padding: 0px; margin: 0px ;}

.allergens::before {
    content: "Allergeni: ";
    font-weight: bold;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #ffffff;
}

.header img {
    height: 60px;
}

.header a {
    margin-left: -21px;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.menu-list.show {
    left: 0;
}

.menu-list a {
    display: block;
    padding: 0.2rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}

.menu-list a:hover {
    text-decoration: underline;
}

.container {
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Spazio tra i pulsanti */
}

.button-container a {
    text-decoration: none;
    flex: 1 0 calc(50% - 20px); /* Due colonne con spazio tra loro */
    margin: 0;
}

.button-container .btn {
    padding: 15px;
    font-size: 1.2rem;
    background-color: #57b6e6;
    color: #fff;
    border: none;
    text-align: center;
    width: 150px;
    height: 120px; /* Altezza fissa per rendere i pulsanti quadrati */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height:1.3rem
}

.button-container .indietro{
    width: 100%;
    height: 80px
}
.button-container .btn:hover {
    background-color: #333;
}

