.delivery-options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

button.float-end {
    position: absolute;
    top: 10px;
    right: 10px;
}

.option-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-label {
    font-weight: 600;
    min-width: 180px;
}

.manual-entry,
.info-box {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.d-flex {
    display: flex;
    text-align: left;
    padding-bottom: 8px;
    height: fit-content;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.checkout-items {
    font-size: 0.99rem;
    border: 1px solid lightgray;
    border-radius: 5px;
    margin-bottom: 5px;
    min-width: 250px;
}

.checkout-header {
}

.resto-highlight, .checkout-header {
    color: white;
    background-color: lightslategray;
    padding: 1px 5px;
    border-radius: 3px;
}

.cart-item-count {
    color: cyan;
    background-color: black;
    padding: 2px 10px;
    font-weight: bold;
    border-radius: 5px;
    margin: 2px 5px;
    border: 1px solid cyan;
}

.shopping-cart-tbl-head {
    margin: auto;
}

    .shopping-cart-tbl-head td {
        text-align: center;
        padding: 1px 1.2vw;
        vertical-align: baseline;
    }


.font-weight-bold {
    font-size: 1.1rem;
    font-weight: bold;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.gap-2 {
    gap: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.cart-item-title {
    background: #03256b;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

.location-wait {
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
}

.location-message {
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;
}

._spinner {
    margin: 0 auto 20px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #4caf50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

td .text-justify {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.table-scroll {
    overflow-x: auto;
    max-width: 100%;
}

    .table-scroll table {
        min-width: max-content; /* ensures the table takes up its intrinsic width */
    }

.cart-tbl {
    font-size: 1.01rem;
}

    .cart-tbl td {
        white-space: nowrap;
        padding: 2px 14px;
        border: 1px solid lightgray;
    }

.long-text-info {
    padding: 10px;
    background: rgba( 55,145,223,0.2);
    border-radius: 5px;
}

.cust-inline-blocks-wrap {
    display: flex; /* no need for inline-flex */
    flex-wrap: wrap;
    justify-content: space-between; /* or: space-evenly */
    gap: 6px;
    font-size: 0.8rem;
}

.cust-inline-block {
    flex: 1 1 48%;
    min-width: 320px;
    max-width: 100%;
}

.cust-menu-item-header {
    background: darkred;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 900;
    color: white;
    width: fit-content;
    margin: auto;
    padding: 5px 5vw;
    border-radius: 5px;
}

.cust-menu-list {
    padding-left: 1rem;
    margin: 0;
}

    .cust-menu-list li {
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 0.9;
    }

.cust-menu-descr {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: wrap;
    padding: 10px;
    max-height: 160px;
    overflow: auto;
}

.cust-menu-cat-lbl {
    background-color: lightskyblue;
    margin: 0.1rem;
    padding: 0.1rem 0.25rem;
    border-radius: 2px;
}

.cust-nutr-facts label {
    font-size: 0.89rem;
    font-weight: 600;
    margin-top: 50px;
}

.cust-menu-img {
    border-radius: 10px;
    min-height: 130px;
    min-width: 70px;
    border: 3px ridge red;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: background-size .11s ease, filter 0.1s ease;
}

    /* Hover effect: zoom and brighten */
    .cust-menu-img:hover {
        background-size: 110%;
        filter: brightness(1.1) saturate(1.2);
    }

.cust-cart-img {
    border-radius: 10px;
    min-height: 300px;
    min-width: 200px;
    max-width: 500px;
    margin: auto;
    border: 3px ridge red;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: background-size .11s ease, filter 0.1s ease;
}

    /* Hover effect: zoom and brighten */
    .cust-cart-img:hover {
        background-size: 110%;
        filter: brightness(1.1) saturate(1.2);
    }


.cust-menu-photo {
    text-align: center;
}

    .cust-menu-photo label {
        position: relative;
        display: inline-block;
        height: 100%;
        margin: auto;
        border: 4px solid #d4a373; /* warm food color border */
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease-in-out;
    }

        .cust-menu-photo label:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
        }

        .cust-menu-photo label img {
            display: block;
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
        }

.carousel {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: repeat-y;
    background-position: top;
    opacity: 0;
    animation: fadeSweep 25s infinite;
}

    .slide:nth-child(1) {
        animation-delay: 0s;
    }

    .slide:nth-child(2) {
        animation-delay: 5s;
    }

    .slide:nth-child(3) {
        animation-delay: 10s;
    }

    .slide:nth-child(4) {
        animation-delay: 15s;
    }

    .slide:nth-child(5) {
        animation-delay: 20s;
    }

.caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px #fff, 0 0 20px #00f, 0 0 30px #00f;
    animation: glow 2s infinite alternate;
}

@keyframes fadeSweep {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }

    5% {
        opacity: 1;
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(0);
    }

    25% {
        opacity: 0;
        transform: translateX(-20%);
    }

    100% {
        opacity: 0;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #00f, 0 0 15px #00f;
    }

    to {
        text-shadow: 0 0 15px #fff, 0 0 30px #00f, 0 0 45px #00f;
    }
}
