/* ========== Menu Specific Styling ========== */
.menu-container {
    padding: 1rem;
    min-height: 100vh;
    max-width: 1280px;
    margin: 0 auto;
}

.menu-container>img {
    display: block;
    margin: 0 auto 20px auto;
    width: 120px;
    height: auto;
}

.menu-item svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #ffffff !important;
    fill: none !important;
    vertical-align: middle;
    margin-left: 6px;
}

h2 {
    text-align: center;
    color: rgb(200, 200, 200);
}

h3 {
    padding-top: 50px;
    font-size: 1.2em;
    color: rgb(200, 200, 200);
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #393939;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-spacing {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.item-details {
    flex-grow: 1;
    margin-right: 15px;
}

.item-name {
    font-weight: bold;
    color: #fff;
    font-size: 1.2em;
}

.item-description {
    font-size: 0.9em;
    color: #ccc;
    line-height: 1.4;
    margin-left: 15px;
}

.item-price {
    font-weight: bold;
    font-size: 1.2em;
    white-space: nowrap;
    text-align: right;
    align-self: flex-start;
}

.price-small {
    font-size: 0.75em;
    color: #aaa;
    display: block;
    text-align: right;
}

.note {
    font-size: 0.9em;
    color: #aaa;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .menu-container {
        margin: 20px auto;
        padding: 20px;
    }

    h2 {
        font-size: 1.6em;
    }

    .item-name {
        font-size: 1.1em;
    }

    .item-price {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    .menu-container {
        padding: 15px;
    }
}