
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

#menu {
    text-align: center;
    padding: 7px;
}

#menu img {
    width: 238px;
    height: 79px;
    border-radius: 50%;
    object-fit: cover;
}

#section {
    margin-top: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

#menu_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
}

#menu_col {
    margin: -4px;
    width: 300px;
    text-align: left;
}

button {
    font-size: 18px;
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #555;
}

/* .collapse {
    margin-top: 10px;
} */
.collapse {
    transition: max-height 0.3s ease-out;
}

.menu-toggle.active {
    background-color: #444;
    color: white;
}

.box {
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.item-name {
    margin: 0;
    font-size: 18px;
    color: #333;
    flex: 1;
}

.solid-line {
    flex: 2;
    height: 1px;
    border-bottom: 1px solid #999;
    margin: 0 10px;
}

.item-price {
    margin: 0;
    font-size: 16px;
    color: #777;
    white-space: nowrap;
}


#images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

h3 {
    font-size: 18px;
    margin-left: 10px;
    color: #333;
}

h4 {
    font-size: 16px;
    color: #777;
}


#footer {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
}

.footer {
    background-color: #f4f4f4;
    color: white; 
    text-align: center; 
    padding: 20px 0; 
    margin-top: 40px; 
    /* border-top: 2px solid #f4f4f4;  */
    /* box-shadow: 0px -4px 6px 444(0, 0, 0, 0.1); */
}

.footer h1 {
    font-size: 24px; 
    font-weight: normal; 
    margin: 5px 0; 
    color: #ffcc00; 

.footer h1:last-child {
    color: #ff6600; 
}

.footer-images img {
    width: 34%;
    margin-left: 33%;
    margin-top: 30px;
    border-radius: 10px; 
}

@media (max-width: 768px) {
    .box img {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 768px) {
    #menu_row {
        flex-direction: column;
    }

    #menu_col {
        width: 100%;
    }

    .footer-images {
        width: 80%;
        margin-left: 10%;
    }

    #section {
        font-size: 28px;
    }

    #footer {
        font-size: 16px;
    }
}
}