﻿/* ==========================================================================
   Base Settings & Fonts
========================================================================== */


@font-face {
    font-family: 'RefahSmall';
    src: local('Refah'), url('/fonts/rffont.ttf') format('truetype');
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('/Fonts/vazirmatn/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.modern-body {
    background-color: #f4f7f6;
    font-family: 'RefahSmall', Tahoma, sans-serif;
    color: #333;
    font-size: 14px;
    direction: rtl;
}

/* ==========================================================================
   Header & Navigation (Sticky)
========================================================================== */
.modern-header {
    background: linear-gradient(135deg, #005782, #007bb5);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    color: #ffffff;
    display: inline-block;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

    .user-info-wrapper span,
    .user-info-wrapper a {
        color: #ffffff !important;
    }

.modern-top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    padding: 5px 0;
    position: sticky !important;
    top: 60px !important;
    z-index: 999 !important;
}

.mobile-menu-toggle {
    display: none;
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 12px 20px;
    color: #005782;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .mobile-menu-toggle:hover {
        background-color: #f8fafc;
    }

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .nav-item:hover {
        background-color: #f3f4f6;
        color: #005782;
    }

    .nav-item svg {
        flex-shrink: 0;
    }

.nav-signout {
    color: #dc2626;
}

    .nav-signout:hover {
        background-color: #fef2f2;
        color: #b91c1c;
    }

/* ==========================================================================
   Main Content Layout
========================================================================== */
.modern-main-content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 15px;
    padding-bottom: 100px !important;
}

/* ==========================================================================
   Top Controls & Selectors
========================================================================== */
.top-controls {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.selectors-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.service-place-selector select,
.modern-dropdown {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background-color: #f9f9f9;
    min-width: 180px;
    outline: none;
    transition: border-color 0.3s;
}

    .modern-dropdown:focus {
        border-color: #007bb5;
    }

/* ==========================================================================
   Week Navigation & Tabs
========================================================================== */
.week-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 15px 0 20px 0;
    position: relative;
    z-index: 10;
}

.current-week-label {
    font-weight: bold;
    color: #005782;
    text-align: center;
    flex-grow: 1;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .nav-btn:hover {
        background-color: #f0f4f8;
        color: #005782;
    }

.days-tabs-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 5px;
    margin-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .days-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

.day-tab-btn {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.3s ease;
    min-width: 100px;
}

    .day-tab-btn .tab-date {
        font-size: 1.1rem;
        font-weight: bold;
        font-family: 'RefahSmall', Tahoma, sans-serif;
    }

    .day-tab-btn.active {
        background: #005782;
        border-color: #005782;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 87, 130, 0.3);
    }

/* ==========================================================================
   Daily Cards & Meal Sections
========================================================================== */
.days-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.day-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eaeaea;
    display: none;
    animation: fadeIn 0.4s ease-out;
}

    .day-card.active-content {
        display: block;
    }

.day-header {
    background: #f0f7fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e1eefa;
    font-size: 16px;
    font-weight: bold;
    color: #005782;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.meal-section {
    padding: 20px;
}

.meal-category-title {
    background-color: #e9ecef;
    color: #333;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 2px solid #ccc;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
}

.reserve-sec {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 1px dashed #e0e0e0;
}

    .reserve-sec .reserve-title {
        color: #166534;
        background-color: #f0fdf4;
        border: 1px solid #bbf7d0;
    }

.meal-section:not(.reserve-sec) {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

    .meal-section:not(.reserve-sec) .cancel-title {
        color: #991b1b;
        background-color: #fef2f2;
        border: 1px solid #fecaca;
    }

    .reserve-sec .modern-grid,
    .meal-section:not(.reserve-sec) .modern-grid {
        background-color: #ffffff;
        border-radius: 6px;
        padding: 5px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

/* ==========================================================================
   Gridviews & Form Elements
========================================================================== */
.modern-grid {
    width: 100%;
    border-collapse: collapse;
}

    .modern-grid td {
        padding: 8px 5px;
        border-bottom: 1px solid #f0f0f0;
        vertical-align: middle;
    }

    .modern-grid tr:last-child td {
        border-bottom: none;
    }

.meal-name {
    font-size: 0.95rem;
    color: #333;
    vertical-align: middle;
}

.meal-qty-input {
    width: 45px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

.modern-grid input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #007bb5;
}

.hidden-id, .hidden-col {
    display: none;
}

.align-right {
    text-align: right !important;
}

.align-left {
    text-align: left !important;
}

/* ==========================================================================
   Action Buttons & Toolbar (Fixed Bottom)
========================================================================== */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.action-toolbar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    margin: 0;
}

.btn-submit, .btn-cancel, .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 16px;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    height: 48px;
}

.btn-submit, .btn-submit-modern {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

    .btn-submit:hover, .btn-submit-modern:hover {
        background: linear-gradient(135deg, #059669, #047857);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(16, 185, 129, 0.35);
    }

.btn-cancel, .btn-cancel-modern {
    background-color: #fef2f2;
    color: #dc2626 !important;
    border: 1px solid #fca5a5;
}

    .btn-cancel:hover, .btn-cancel-modern:hover {
        background-color: #fee2e2;
        color: #b91c1c !important;
        border-color: #f87171;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(220, 38, 38, 0.12);
    }

    .btn-submit:active, .btn-cancel:active,
    .btn-submit-modern:active, .btn-cancel-modern:active {
        transform: translateY(0);
    }

/* ==========================================================================
   Tariff & Transaction Tables
========================================================================== */
.tariff-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.tariff-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.transaction-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    margin-top: 20px;
    overflow-x: auto;
}

.tariff-table,
.transaction-table {
    width: 100%;
    border-collapse: collapse;
}

    .tariff-table th,
    .transaction-table th {
        background-color: #f0f7fa;
        color: #005782;
        font-weight: bold;
        border-bottom: 2px solid #007bb5;
        padding: 12px;
    }

    .transaction-table th {
        font-size: 13px !important;
        white-space: nowrap;
        text-align: center;
    }

    .tariff-table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    .transaction-table td {
        font-size: 12.5px !important;
        padding: 10px 8px !important;
        vertical-align: middle;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .transaction-table tr {
        transition: background-color 0.2s;
    }

        .transaction-table tr:hover {
            background-color: #f8fbfd;
        }

    .transaction-table .date-column,
    .transaction-table .amount-column {
        white-space: nowrap;
    }

/* ==========================================================================
   Alerts & Notifications (Standardized)
========================================================================== */
.expire-alert {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    border-right: 4px solid #ffeeba;
}

.notification-container {
    max-width: 900px;
    margin: 15px auto 20px auto;
    padding: 0 10px;
}

.alert-box {
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    animation: fadeIn 0.4s ease-out forwards;
}

.alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background-color: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.RefahSmall {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease-out forwards;
}

.notification-container .RefahSmall {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Modern Package Ads (Product Cards) Styles
========================================================================== */
.package-details-container {
    width: 100%;
}

.packages-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
    max-width: 1000px;
}

.modern-package-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .modern-package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

.card-header-gradient {
    background: linear-gradient(135deg, #005782 0%, #0087be 100%);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.pkg-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.pkg-price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-flex;
}

.pkg-price-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fde047;
}

.pkg-price-currency {
    font-size: 0.9rem;
    font-weight: normal;
    color: #f8fafc;
}

.card-body-content {
    padding: 20px;
    background-color: #f8fafc;
}

.pkg-detail-heading {
    font-size: 1rem;
    color: #475569;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    text-align: right;
}

.pkg-meal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-meal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #cbd5e1;
}

    .pkg-meal-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.pkg-meal-day {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: bold;
}

    .pkg-meal-day svg {
        color: #005782;
    }

.pkg-meal-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    text-align: left;
}

.image-ads-container img.responsive-ad-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 10px 0;
}

/* ==========================================================================
   Animations
========================================================================== */
@keyframes slideDown {
    from {
        top: -50px;
        opacity: 0;
    }

    to {
        top: 20px;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Media Queries (Responsive Adjustments)
========================================================================== */
@media (min-width: 992px) {
    .modern-main-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .action-buttons, .action-toolbar {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .btn-submit, .btn-cancel, .btn-action,
    .btn-submit-modern, .btn-cancel-modern {
        width: 240px !important;
        min-width: 240px;
    }

    .days-tabs-wrapper {
        justify-content: center;
        gap: 10px;
    }

    .day-tab-btn {
        flex: 0 1 150px;
    }
}

@media (max-width: 768px) {
    .modern-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    .modern-top-nav {
        position: sticky !important;
        top: 62px !important;
        z-index: 999 !important;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        margin-bottom: 0 !important;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 100%;
        background-color: #ffffff;
        border: none;
        padding: 12px 20px;
        color: #005782;
        font-family: inherit;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .nav-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        width: 100%;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        padding: 15px;
        background-color: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 998;
    }

        .nav-container.active {
            display: flex !important;
        }

    .nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 15px;
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 8px;
    }

        .nav-item:last-child {
            margin-bottom: 0;
        }

    .meal-section.reserve-sec {
        border-left: none;
        border-bottom: 2px solid #e0e0e0;
    }

    .top-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .action-buttons, .action-toolbar {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .btn-submit, .btn-cancel, .btn-action,
    .btn-submit-modern, .btn-cancel-modern {
        width: 100% !important;
        min-width: unset;
    }

    .day-content {
        grid-template-columns: 1fr;
    }

    .meal-section {
        padding: 15px 10px;
    }

    .welcome-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .action-toolbar {
        margin: 0;
        padding: 15px;
    }
}

/* ==========================================================================
   Miscellaneous UI Wrappers (Credit, Profile, Landing)
========================================================================== */
.new-credit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    direction: rtl;
}

.credit-card-panel {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.panel-header-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-label-modern {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #475569;
    margin-bottom: 10px;
}

.amount-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

    .amount-input-group:focus-within {
        border-color: #0284c7;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    }

    .amount-input-group input {
        border: none;
        background: transparent;
        font-size: 1.5rem;
        font-weight: bold;
        color: #0f172a;
        text-align: center;
        width: 100%;
        outline: none;
    }

.amount-addon {
    font-size: 0.95rem;
    font-weight: 400;
    color: #64748b;
    white-space: nowrap;
}

.gateway-select-modern {
    width: 100%;
    padding: 12px 15px;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    transition: all 0.3s ease;
}

    .gateway-select-modern:focus {
        border-color: #0284c7;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    }

.submit-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .submit-btn-modern:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 15px rgba(2, 132, 199, 0.25);
    }

.equivalent-text {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #059669;
    font-weight: 400;
    text-align: left;
}

.message-alert-modern {
    margin-top: 20px;
    text-align: center;
    font-weight: 400;
    font-size: 0.95rem;
}

.profile-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    direction: rtl;
    width: 100%;
}

.profile-card-panel {
    background: #ffffff;
    width: 100%;
    max-width: 750px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    box-sizing: border-box;
}

.password-panel-spacing {
    margin-top: 30px;
}

.profile-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

    .form-group-modern.full-width {
        grid-column: 1 / -1;
    }

.form-label-modern {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.form-control-modern {
    width: 100%;
    padding: 10px 14px;
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

    .form-control-modern:focus {
        border-color: #0284c7;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    }

.error-feedback {
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 5px;
    display: block;
}

.form-actions {
    margin-top: 25px;
    text-align: left;
}

.message-container {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.link-action-container {
    margin-top: 20px;
    text-align: right;
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
}

.modern-text-link {
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

    .modern-text-link:hover {
        color: #0369a1;
        text-decoration: underline;
    }

.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    direction: rtl;
    width: 100%;
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-banner {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.15);
}

.welcome-content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.welcome-content p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.welcome-badge span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

    .dashboard-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-color: #0284c7;
    }

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.dashboard-panel {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.panel-body-content {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.8;
}

.public-landing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
    direction: rtl;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    box-sizing: border-box;
}

.landing-hero-card {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.landing-hero-card h2 {
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.hero-intro-text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.landing-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .info-card.support-highlight {
        border-right: 4px solid #0284c7;
        background: #f8fafc;
    }

.info-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
}

.info-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.modern-billboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    direction: rtl;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.billboard-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .billboard-hero h1 {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0 0 15px 0;
        color: #f8fafc;
    }

    .billboard-hero p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #94a3b8;
        max-width: 700px;
        margin: 0 auto 30px auto;
    }

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.primary-btn {
    background: #0284c7;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

    .primary-btn:hover {
        background: #0369a1;
        transform: translateY(-2px);
    }

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    .secondary-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

.billboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.billboard-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .billboard-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    }

.highlight-card {
    background: #f8fafc;
    border-right: 4px solid #0284c7;
}

.billboard-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.billboard-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.checkout-container {
    margin: 40px auto;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    direction: rtl;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px dashed #cbd5e1;
    margin-bottom: 10px;
}

    .info-row:last-child {
        border-bottom: none;
    }

.info-title {
    color: #64748b;
    font-size: 0.95rem;
}

.info-value {
    color: #1e293b;
    font-size: 1.05rem;
}

.pay-btn-wrapper {
    margin-top: 30px;
    text-align: center;
}

    .pay-btn-wrapper input[type="submit"] {
        background: #16a34a;
        color: #ffffff;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        width: 100%;
    }

        .pay-btn-wrapper input[type="submit"]:hover {
            background: #15803d;
        }

.seamless-input {
    border: none !important;
    outline: none !important;
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    text-align: right;
    width: 60px;
}

.amount-addon.zeros {
    color: #888;
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 1;
    pointer-events: none;
}

.amount-addon.currency {
    margin-right: 8px;
    font-size: 14px;
    color: #333;
}

.amount-highlight-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #bae6fd;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08);
}

.highlight-title {
    display: block;
    color: #0369a1;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-value {
    display: block;
    color: #0c4a6e;
    font-size: 1.6rem;
    font-weight: 700;
}

    .highlight-value span {
        display: block !important;
        font-size: 1.1rem;
        margin-top: 8px;
        color: #dc2626 !important;
        background: #fef2f2;
        padding: 5px 15px;
        border-radius: 20px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid #fecaca;
    }

.secondary-info {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 15px;
}


/* ==========================================================================
   Dashboard Notice & Announcements
========================================================================== */
.modern-notice-container {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: 4px solid #0284c7; /* Blue accent line */
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.notice-heading {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

    .notice-heading.text-danger {
        color: #dc2626; /* Deep Red */
    }

.notice-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 15px;
    text-align: justify;
}

.text-highlight {
    color: #dc2626;
    font-weight: 700;
    background-color: #fef2f2;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #fecaca;
    white-space: nowrap;
}

.text-highlight-blue {
    color: #0369a1;
    font-weight: 700;
    background-color: #f0f9ff;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #bae6fd;
    white-space: nowrap;
}

.notice-warning {
    background-color: #fffbeb;
    color: #92400e;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px dashed #fcd34d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 20px;
    text-align: right;
}

    .notice-warning strong {
        color: #b45309;
        font-weight: 900;
    }


/* ==========================================================================
   Checkout & Payment Initialization Styles (CheckOutZ)
========================================================================== */
.checkout-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.checkout-title {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-align: center;
}

.amount-highlight-box {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.highlight-title {
    display: block;
    color: #475569;
    font-size: 1rem;
    margin-bottom: 10px;
}

.highlight-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0369a1;
}

.amount-words {
    color: #dc2626;
    font-size: 1.1rem;
    margin-right: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pay-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.checkout-btn {
    background-color: #0ea5e9;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

    .checkout-btn:hover {
        background-color: #0284c7;
    }

    .checkout-btn:disabled {
        background-color: #94a3b8;
        cursor: not-allowed;
    }

.checkout-error-pnl {
    margin-top: 20px;
    text-align: center;
}

.checkout-error-box {
    color: #ef4444;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    padding: 15px;
    border-radius: 10px;
}

.checkout-error-text {
    color: #ef4444;
    font-weight: bold;
}

.checkout-return-link {
    color: #0284c7;
    text-decoration: none;
    font-weight: bold;
}


/* ==========================================================================
   Add Credit Utilities
========================================================================== */
.mb-0 {
    margin-bottom: 0 !important;
}

.msg-danger-text {
    color: #ef4444;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}


/* ==========================================================================
   Footer & Branding (Powered By SchoolPro)
========================================================================== */
.modern-footer {
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    direction: ltr; /* English text should be LTR */
}

.powered-text {
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.powered-logo {
    height: 24px; /* Keeps the logo proportional and elegant */
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .powered-logo:hover {
        opacity: 1;
    }


/* ==========================================================================
   Return From Bank Wrapper
========================================================================== */
.return-bank-wrapper {
    max-width: 900px;
    margin: 10px auto;
    padding: 20px 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Public Landing Page & Hero Slider (Default.aspx)
========================================================================== */
.public-landing-wrapper {
    width: 100%;
    margin-top: -20px; /* Pulls up to touch the header if needed */
}

/* CSS-Only Auto-Slider Animation */
@keyframes slideShow {
    0%, 25% {
        background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('/Images/slider1.jpg');
    }

    33%, 58% {
        background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('/Images/slider2.jpg');
    }

    66%, 91% {
        background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('/Images/slider3.jpg');
    }

    100% {
        background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('/Images/slider1.jpg');
    }
}

.hero-slider-section {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    animation: slideShow 15s infinite;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: #0ea5e9;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-hero-primary {
    background-color: #0ea5e9;
    color: white !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0ea5e9;
}

    .btn-hero-primary:hover {
        background-color: transparent;
        color: #0ea5e9 !important;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    }

/* Feature Grid section for SEO & UX */
.features-section {
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 30px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dashboard Styles */
.dashboard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.welcome-content h2 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.welcome-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.welcome-badge span {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

    .dashboard-card:hover {
        border-color: #0ea5e9;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-title {
    color: #0f172a;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.dashboard-panel {
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.panel-header-title {
    background: #f8fafc;
    padding: 15px 20px;
    font-weight: bold;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.panel-body-content {
    padding: 20px;
}

/* Notice Container Updates */
.modern-notice-container {
    background: #fef2f2;
    border-right: 4px solid #ef4444;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.notice-heading {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.text-danger {
    color: #dc2626;
}

.text-highlight {
    color: #0284c7;
    font-weight: bold;
}

.text-highlight-blue {
    color: #2563eb;
    font-weight: bold;
}

.notice-warning {
    margin-top: 15px;
    background: #fffbeb;
    padding: 12px;
    border-radius: 6px;
    color: #92400e;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .welcome-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}



/* ==========================================================================
   Modern Split Hero & Nutrition Showcase Styles
========================================================================== */
.hero-slider-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 20px auto 40px auto;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text-col {
    flex: 1.2;
    text-align: right;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0 0 30px 0;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-hero-primary {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
        color: #ffffff;
    }

/* Graphic Showcase Area */
.hero-visual-col {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nutrition-visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.visual-center-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #34d399;
}

.nutrition-pill-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nutrition-pill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    font-size: 0.95rem;
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

    .pill-icon.green {
        background: rgba(52, 211, 153, 0.2);
        color: #34d399;
    }

    .pill-icon.amber {
        background: rgba(251, 191, 36, 0.2);
        color: #fbbf24;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-split-container {
        flex-direction: column;
    }

    .hero-text-col, .hero-visual-col {
        flex: 1;
        width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}


/* ==========================================================================
   Exclusive Modern Auth Interface (No asp:Login)
========================================================================== */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
    padding: 20px;
    direction: rtl;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    padding: 40px;
    border: 1px solid #f1f5f9;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.1);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.auth-error-panel {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-group {
    margin-bottom: 20px;
    text-align: right;
}

.auth-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.3s ease;
    direction: ltr;
    text-align: left;
}

    .auth-input:focus {
        border-color: #0ea5e9;
        background: #ffffff;
        outline: none;
        box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    }

    /* Chrome Autofill Override */
    .auth-input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 50px #f8fafc inset !important;
        -webkit-text-fill-color: #0f172a !important;
    }

.auth-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .auth-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(2, 132, 199, 0.25);
    }

.auth-captcha-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.auth-links {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

    .auth-links a {
        color: #0284c7;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

        .auth-links a:hover {
            color: #0f172a;
        }


/* ==========================================================================
   Modern Signup & Anti-Bot Infrastructure
========================================================================== */
.signup-card {
    max-width: 750px; /* Wider card for two-column layout */
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.col-span-2 {
    grid-column: 1 / -1;
}

.signup-dropdown {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    appearance: none; /* Custom dropdown arrow handling */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23475569%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 12px;
}

    .signup-dropdown:focus {
        border-color: #0ea5e9;
        background: #ffffff;
        outline: none;
        box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    }

/* Anti-bot Honeypot - Invisible to humans, visible to screen-reader bots */
.anti-bot-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .signup-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* ==========================================================================
   Hero Section Secondary Actions (Signup & Hints)
========================================================================== */
.btn-hero-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.hero-register-hint {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #bae6fd; /* Light blue text to stand out against dark background */
    font-weight: 500;
    line-height: 1.6;
}

    .hero-register-hint strong {
        color: #ffffff;
    }

@media (max-width: 992px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ==========================================================================
   Modern Bank Receipt (Digital Receipt) & System Alerts
========================================================================== */
.receipt-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
    direction: rtl;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.receipt-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.receipt-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px dashed #cbd5e1;
}

    .receipt-header h2 {
        font-size: 1.4rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0;
    }

.receipt-body {
    padding: 30px;
}

.receipt-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

    .receipt-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.receipt-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

.receipt-value {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 700;
    text-align: left;
    direction: ltr; /* Keeps numbers and references readable */
}

.receipt-actions {
    margin-top: 30px;
    text-align: center;
}

/* Modern Backend Alert Injection Styles */
.modern-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.alert-content {
    flex: 1;
}

    .alert-content strong {
        display: block;
        font-size: 1.05rem;
        margin-bottom: 5px;
    }

.highlight-amount {
    font-size: 1.2rem;
    font-weight: 900;
    padding: 0 5px;
}

/* Success Alert */
.modern-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

    .modern-alert-success .alert-icon-box {
        background: #16a34a;
        color: #ffffff;
    }

    .modern-alert-success .highlight-amount {
        color: #15803d;
    }

/* Danger Alert */
.modern-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

    .modern-alert-danger .alert-icon-box {
        background: #dc2626;
        color: #ffffff;
    }

/* Warning Alert */
.modern-alert-warning {
    background: #fffbeb;
    border: 1px dashed #fcd34d;
    color: #92400e;
}

    .modern-alert-warning .alert-icon-box {
        background: #d97706;
        color: #ffffff;
    }

/* Info Alert */
.modern-alert-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #075985;
}

    .modern-alert-info .alert-icon-box {
        background: #0284c7;
        color: #ffffff;
    }

.mt-15 {
    margin-top: 15px;
}


/* ==========================================================================
   Modern Transaction History & Responsive Grid
========================================================================== */
.transactions-page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
    direction: rtl;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

/* Enhanced Top Controls */
.filter-panel {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 25px 30px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.filter-title {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.filter-controls-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.date-picker-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

.date-picker-label {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}

.date-picker-input {
    border: none;
    background: transparent;
    width: 110px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: bold;
    text-align: center;
    outline: none;
    font-family: inherit;
}

.btn-filter-search {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-filter-search:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(2, 132, 199, 0.3);
    }

/* Modern DataGrid Styles */
.grid-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.modern-datagrid {
    width: 100%;
    border-collapse: collapse;
}

    .modern-datagrid th {
        background: #f8fafc;
        color: #334155;
        font-weight: 700;
        padding: 16px 12px;
        text-align: right;
        font-size: 0.95rem;
        border-bottom: 2px solid #e2e8f0;
        white-space: nowrap;
    }

    .modern-datagrid td {
        padding: 16px 12px;
        color: #0f172a;
        font-size: 0.95rem;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }

    .modern-datagrid tr:hover td {
        background: #f0f9ff;
    }

/* Responsive Table -> Cards for Mobile */
@media screen and (max-width: 768px) {
    .filter-panel {
        padding: 20px 15px;
    }

    .filter-controls-group {
        flex-direction: column;
        align-items: stretch;
    }

    .date-picker-group {
        justify-content: space-between;
    }

    .grid-container {
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .modern-datagrid,
    .modern-datagrid tbody,
    .modern-datagrid tr,
    .modern-datagrid td {
        display: block;
        width: 100%;
    }

        .modern-datagrid thead {
            display: none; /* Hide headers on mobile */
        }

        .modern-datagrid tr {
            background: #ffffff;
            margin-bottom: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            padding: 15px;
        }

        .modern-datagrid td {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e8f0;
            text-align: left;
        }

            .modern-datagrid td:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            /* Inject Data Attributes as Labels for Mobile */
            .modern-datagrid td::before {
                content: attr(data-label);
                font-weight: 700;
                color: #64748b;
                font-size: 0.85rem;
            }

        .modern-datagrid tr:hover td {
            background: transparent; /* Disable hover effect on mobile */
        }
}

/* ==========================================================================
   Modern Food Order Interface & Daily Planners
========================================================================== */
.order-dashboard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    direction: rtl;
}

/* Service Place & Control Panel */
.order-control-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.service-selector-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-label {
    font-size: 1rem;
    color: #334155;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Week Navigation Controller */
.week-nav-container {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 25px;
}

.week-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .week-nav-btn:hover {
        background: #0ea5e9;
        color: #ffffff;
        border-color: #0ea5e9;
    }

.week-current-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

/* Horizontal Day Tabs (Scrollable on Mobile) */
.days-tab-scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .days-tab-scroller::-webkit-scrollbar {
        height: 6px;
    }

    .days-tab-scroller::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

.day-tab-card {
    flex: 0 0 auto;
    min-width: 140px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .day-tab-card:hover {
        border-color: #94a3b8;
        background: #f8fafc;
    }

    .day-tab-card.active {
        background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
        border-color: transparent;
        color: #ffffff;
        box-shadow: 0 8px 15px rgba(14, 165, 233, 0.25);
    }

        .day-tab-card.active .tab-icon {
            color: #ffffff;
        }

.tab-icon {
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.tab-title {
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
}

/* Daily Schedule Area */
.day-schedule-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

    .day-schedule-panel.active-panel {
        display: block;
    }

.schedule-header {
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 12px;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Meal Category Grids */
.meal-category-block {
    margin-bottom: 30px;
}

.meal-category-title {
    font-size: 1.15rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.meal-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.meal-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

    .meal-box.reserve-mode {
        border-top: 4px solid #10b981; /* Green Top Border */
    }

    .meal-box.cancel-mode {
        border-top: 4px solid #ef4444; /* Red Top Border */
    }

.meal-box-header {
    background: #f8fafc;
    padding: 12px 15px;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.reserve-mode .meal-box-header {
    color: #059669;
}

.cancel-mode .meal-box-header {
    color: #dc2626;
}

/* GridView Modern Overrides */
.modern-meal-grid {
    width: 100%;
    border-collapse: collapse;
}

    .modern-meal-grid td {
        padding: 12px 15px;
        border-bottom: 1px dashed #e2e8f0;
        vertical-align: middle;
    }

    .modern-meal-grid tr:last-child td {
        border-bottom: none;
    }

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    outline: none;
}

    .qty-input:focus {
        border-color: #0ea5e9;
        box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    }

.checkbox-custom input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0ea5e9;
}

/* Floating Action Bar */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #e2e8f0;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
}

.btn-order-submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s;
}

    .btn-order-submit:hover {
        transform: translateY(-2px);
    }

.btn-order-cancel {
    background: #ffffff;
    color: #dc2626;
    border: 2px solid #fca5a5;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-order-cancel:hover {
        background: #fef2f2;
        border-color: #ef4444;
    }

/* Responsive Handling */
@media (max-width: 992px) {
    .meal-action-grid {
        grid-template-columns: 1fr;
    }

    .sticky-action-bar {
        flex-direction: column;
        padding: 15px;
    }

    .btn-order-submit, .btn-order-cancel {
        width: 100%;
    }

    .order-dashboard-wrapper {
        padding-bottom: 120px; /* Space for sticky bar */
    }
}