/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-k4tks3cx5b] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-k4tks3cx5b] {
    flex: 1;
    padding: 0 24px;
}


.sidebar[b-k4tks3cx5b] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-k4tks3cx5b] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-k4tks3cx5b]  a, .top-row[b-k4tks3cx5b]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-k4tks3cx5b]  a:hover, .top-row[b-k4tks3cx5b]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-k4tks3cx5b]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-k4tks3cx5b] {
        justify-content: space-between;
    }

    .top-row[b-k4tks3cx5b]  a, .top-row[b-k4tks3cx5b]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-k4tks3cx5b] {
        flex-direction: row;
    }

    .sidebar[b-k4tks3cx5b] {
        width: 290px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-k4tks3cx5b] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-k4tks3cx5b]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-k4tks3cx5b], article[b-k4tks3cx5b] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-k4tks3cx5b] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-k4tks3cx5b] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-cz7ovonbtl],
.components-reconnect-repeated-attempt-visible[b-cz7ovonbtl],
.components-reconnect-failed-visible[b-cz7ovonbtl],
.components-pause-visible[b-cz7ovonbtl],
.components-resume-failed-visible[b-cz7ovonbtl],
.components-rejoining-animation[b-cz7ovonbtl] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-retrying[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-failed[b-cz7ovonbtl],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-cz7ovonbtl] {
    display: block;
}


#components-reconnect-modal[b-cz7ovonbtl] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-cz7ovonbtl 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-cz7ovonbtl 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-cz7ovonbtl 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-cz7ovonbtl]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-cz7ovonbtl 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-cz7ovonbtl {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-cz7ovonbtl {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-cz7ovonbtl {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-cz7ovonbtl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-cz7ovonbtl] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-cz7ovonbtl] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-cz7ovonbtl] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-cz7ovonbtl] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-cz7ovonbtl] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-cz7ovonbtl] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-cz7ovonbtl 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-cz7ovonbtl] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-cz7ovonbtl {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ExpenseSummary.razor.rz.scp.css */
.reports-container[b-whmyz4rpg5] {
    padding: 8px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.filter-card[b-whmyz4rpg5] {
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
}

.filter-flex[b-whmyz4rpg5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.preset-buttons[b-whmyz4rpg5] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.custom-picker[b-whmyz4rpg5] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.picker-label[b-whmyz4rpg5] {
    font-size: 13px;
    font-weight: 600;
    color: #595959;
}

/* Expense KPI Cards */
.expense-card[b-whmyz4rpg5] {
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f0f0f0 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expense-card:hover[b-whmyz4rpg5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
}

.expense-card[b-whmyz4rpg5]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.card-total[b-whmyz4rpg5]::before { background: linear-gradient(90deg, #10b981, #059669); }
.card-pending[b-whmyz4rpg5]::before { background: linear-gradient(90deg, #faad14, #d97706); }
.card-txs[b-whmyz4rpg5]::before { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.card-avg[b-whmyz4rpg5]::before { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }

.expense-card-content[b-whmyz4rpg5] {
    display: flex;
    flex-direction: column;
    padding: 4px 2px;
    position: relative;
}

.expense-label[b-whmyz4rpg5] {
    color: #8c8c8c;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.expense-val[b-whmyz4rpg5] {
    color: #1e293b;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.text-approved[b-whmyz4rpg5] {
    color: #10b981;
}

.text-pending[b-whmyz4rpg5] {
    color: #faad14;
}

.expense-icon[b-whmyz4rpg5] {
    position: absolute;
    right: 16px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bg-total[b-whmyz4rpg5] { background: #ecfdf5; color: #10b981; }
.bg-pending[b-whmyz4rpg5] { background: #fffbe6; color: #faad14; }
.bg-txs[b-whmyz4rpg5] { background: #eff6ff; color: #3b82f6; }
.bg-avg[b-whmyz4rpg5] { background: #f5f3ff; color: #8b5cf6; }

.breakdown-card[b-whmyz4rpg5] {
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.table-card[b-whmyz4rpg5] {
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}
/* /Components/Pages/MonthlyExpenseReport.razor.rz.scp.css */
.reports-container[b-bvjbuw2oxq] {
    padding: 8px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.filter-card[b-bvjbuw2oxq] {
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
}

.filter-flex[b-bvjbuw2oxq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.preset-buttons[b-bvjbuw2oxq] {
    display: flex;
    gap: 8px;
}

.custom-picker[b-bvjbuw2oxq] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.picker-label[b-bvjbuw2oxq] {
    font-size: 13px;
    font-weight: 600;
    color: #595959;
}

.exp-card[b-bvjbuw2oxq] {
    border-radius: 12px !important;
    background: #ffffff !important;
}

.exp-card-content[b-bvjbuw2oxq] {
    position: relative;
    padding: 4px;
}

.exp-label[b-bvjbuw2oxq] {
    font-size: 13px;
    font-weight: 600;
    color: #8c8c8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exp-val[b-bvjbuw2oxq] {
    font-size: 24px;
    font-weight: 800;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}

.exp-icon[b-bvjbuw2oxq] {
    position: absolute;
    right: 4px;
    bottom: 4px;
    font-size: 24px;
    color: #f0f0f0;
    z-index: 1;
}

.table-card[b-bvjbuw2oxq] {
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
}
/* /Components/Pages/Pos.razor.rz.scp.css */
.pos-container[b-wt66w7lvi0] {
    height: calc(100vh - 72px);
    margin: 0;
    display: flex;
    overflow: hidden;
    background: #f8fafc;
}

/* Category Sidebar styling moved to wwwroot/app.css to avoid Blazor CSS isolation override issues */


.product-area[b-wt66w7lvi0] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-area > div[b-wt66w7lvi0] {
    padding: 24px !important;
}

.search-bar[b-wt66w7lvi0] {
    width: 100%;
    max-width: 600px;
    margin-bottom: 8px;
}

.product-card[b-wt66w7lvi0] {
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    cursor: pointer;
    height: 100%;
    position: relative;
}

.product-card:hover:not(.out-of-stock)[b-wt66w7lvi0] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    border-color: #3b82f6;
}

.product-card.out-of-stock[b-wt66w7lvi0] {
    cursor: not-allowed;
    opacity: 0.7;
    filter: grayscale(0.5);
    pointer-events: none;
}

.product-image-container[b-wt66w7lvi0] {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image[b-wt66w7lvi0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image[b-wt66w7lvi0] {
    transform: scale(1.05);
}

.product-image-placeholder[b-wt66w7lvi0] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.out-of-stock-overlay[b-wt66w7lvi0] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-price-tag[b-wt66w7lvi0] {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 800;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-info[b-wt66w7lvi0] {
    padding: 16px;
}

.product-name[b-wt66w7lvi0] {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-stock[b-wt66w7lvi0] {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Cart Panel */
.cart-panel[b-wt66w7lvi0] {
    width: 420px;
    background: white;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.02);
}

.cart-header[b-wt66w7lvi0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-header h2[b-wt66w7lvi0] {
    margin: 0;
    font-weight: 800;
    font-size: 18px;
    color: #1e293b;
}

.cart-items[b-wt66w7lvi0] {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 4px;
}

.empty-cart-state[b-wt66w7lvi0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 60px;
    color: #94a3b8;
}

.empty-cart-icon[b-wt66w7lvi0] {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #cbd5e1;
    border: 2px dashed #e2e8f0;
}

.cart-item[b-wt66w7lvi0] {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item-image[b-wt66w7lvi0] {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-info[b-wt66w7lvi0] {
    flex: 1;
    min-width: 0;
}

.cart-item-name[b-wt66w7lvi0] {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price[b-wt66w7lvi0] {
    font-size: 12px;
    color: #64748b;
}

.quantity-control[b-wt66w7lvi0] {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 2px;
    border-radius: 12px;
    gap: 4px;
}

.quantity-value[b-wt66w7lvi0] {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    font-size: 13px;
    color: #1e293b;
}

.cart-item-total[b-wt66w7lvi0] {
    font-weight: 800;
    min-width: 70px;
    text-align: right;
    color: #1e293b;
    font-size: 14px;
}

.cart-summary[b-wt66w7lvi0] {
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row[b-wt66w7lvi0] {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 14px;
}

.summary-row.total[b-wt66w7lvi0] {
    color: #1e293b;
    font-size: 20px;
    font-weight: 800;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px dashed #e2e8f0;
}

.pay-button[b-wt66w7lvi0] {
    margin-top: 24px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 18px;
    font-weight: 800;
    font-size: 18px;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pay-button:hover:not(:disabled)[b-wt66w7lvi0] {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
}

.pay-button:active:not(:disabled)[b-wt66w7lvi0] {
    transform: translateY(0);
}

.pay-button:disabled[b-wt66w7lvi0] {
    background: #e2e8f0;
    background-image: none;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Modal Styles */
.payment-modal .ant-modal-content[b-wt66w7lvi0] {
    border-radius: 24px;
    overflow: hidden;
}

.payment-methods[b-wt66w7lvi0] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.payment-method[b-wt66w7lvi0] {
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method:hover[b-wt66w7lvi0] {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.payment-method.active[b-wt66w7lvi0] {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}

.payment-method-icon[b-wt66w7lvi0] {
    font-size: 24px;
}

.payment-method-label[b-wt66w7lvi0] {
    font-weight: 700;
    font-size: 12px;
}

/* Quick Cash and Receipt Modal Styles */
.quick-cash-btn[b-wt66w7lvi0] {
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: white;
    font-weight: 700;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.quick-cash-btn:hover[b-wt66w7lvi0] {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
    transform: translateY(-1px);
}

.quick-cash-btn.active[b-wt66w7lvi0] {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.receipt-modal .ant-modal-content[b-wt66w7lvi0] {
    border-radius: 24px;
    overflow: hidden;
}

/* Service Type Selector */
.service-type-selector[b-wt66w7lvi0] {
    margin-bottom: 20px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    gap: 4px;
}

.service-type-btn[b-wt66w7lvi0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: none;
    border-radius: 8px;
    padding: 8px 4px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    background: transparent;
    color: #64748b;
}

.service-type-btn:hover[b-wt66w7lvi0] {
    background: rgba(255, 255, 255, 0.5);
    color: #334155;
}

/* Walk-in (Blue) */
.service-type-btn.walk-in.active[b-wt66w7lvi0] {
    background: #e0f2fe;
    color: #0369a1;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.12);
}

/* Takeaway (Orange) */
.service-type-btn.takeaway.active[b-wt66w7lvi0] {
    background: #fff7e6;
    color: #d46b08;
    box-shadow: 0 4px 12px rgba(212, 107, 8, 0.12);
}

/* Dine-in (Green) */
.service-type-btn.dine-in.active[b-wt66w7lvi0] {
    background: #f6ffed;
    color: #389e0d;
    box-shadow: 0 4px 12px rgba(56, 158, 13, 0.12);
}

/* Delivery (Purple) */
.service-type-btn.delivery.active[b-wt66w7lvi0] {
    background: #f9f0ff;
    color: #531dab;
    box-shadow: 0 4px 12px rgba(83, 29, 171, 0.12);
}

/* Drive-through (Gold) */
.service-type-btn.drive-through.active[b-wt66w7lvi0] {
    background: #fffbe6;
    color: #d4b106;
    box-shadow: 0 4px 12px rgba(212, 177, 6, 0.12);
}


