#controls {
    border: 10px solid black;
    background-color: #f18820ff;
    border-radius: 5%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#controls > div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 10px;
    margin-top: 10px;
}

#controls > div > p {
    padding-left: 2%;
    padding-right: 2%;
}

@media screen and (max-width:700px) {
    #controls {
        width: fit-content;
        justify-self: center;
    }
    #controls > div {
        flex-direction: column;
        align-items: center;
    }
    #controls > div > p {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}



#controls input[type=checkbox] {
    display: none;
}

label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: larger;
    text-align: center;
}

#controls [type=checkbox] + span::before {
    content: '\2716';
}

#controls [type=checkbox] + span {
    border: 1px solid black;
    border-radius: 25%;
}

#controls [type=checkbox]:hover + span {
    border: 1px dashed black;
    border-radius: 25%;
    background-color: white;
}

#controls [type=checkbox]:checked + span::before {
    content: '\2714';
}

#search {
    width: 50vw;
}

#search-box {
    margin: auto;   
    margin-top: 2%;
    margin-bottom: 2%;
    justify-content: space-around;
    display: flex;
}

#menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid black;
    background-color: rgb(20, 255, 177);
    border-radius: 5%;
    width: 90vw;
}

.menu-item:hover {
    background-color: rgb(232, 250, 244);
}

.menu-item p {
    color: black;
}

.menu-item-img {
    padding-top: 2%;
}

@media screen and (min-width:900px){
    .menu-item {
        width: 60vw;
    }
    .menu-item-img {
        width: 50vw;
        margin:auto;
    }
}

.menu-item-checkbox{
    appearance: none;
}

.menu-item-name{
    margin: auto;
}

.menu-item-desc {
    padding-left: 5%;
    padding-right: 5%;
}

.menu-item-checkbox::after {
    content: "⌃";
}
.menu-item-checkbox:checked::after {
    content: "⌄";
}

.menu-item-content {
    display: none;
}

.menu-item:has(.menu-item-checkbox:checked) .menu-item-content {
    display: flex;
    flex-direction: column;
}
