@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /AccountC/ChangePassword.razor.rz.scp.css */
/* ============================ */
/* FULL SCREEN LOGIN / CHANGE PASSWORD FORM */
/* Premium UI/UX                */
/* ============================ */

/* ---------- FULL SCREEN CENTER ---------- */
.full-screen-center[b-83x0uhfav9] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e0f0ff 100%);
    padding: 1rem;
}

/* ---------- LOGIN CONTAINER ---------- */
.login-container[b-83x0uhfav9] {
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .login-container:hover[b-83x0uhfav9] {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
    }

/* ---------- HEADER ---------- */
.login-header-container[b-83x0uhfav9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.login-logo[b-83x0uhfav9] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.login-header-text[b-83x0uhfav9] {
    font-size: 1.8rem;
    color: #0d6efd;
    font-weight: 700;
    text-align: center;
}

/* ---------- FORM CONTROLS ---------- */
.form-control[b-83x0uhfav9] {
    height: 3.5rem;
    border-radius: 12px;
    border: 1px solid #ced4da;
    padding: 0.5rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .form-control:focus[b-83x0uhfav9] {
        border-color: #6610f2;
        box-shadow: 0 0 0 3px rgba(102,16,242,0.15);
        outline: none;
    }

/* ---------- GRADIENT BUTTONS ---------- */
.btn-login[b-83x0uhfav9] {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 0;
    font-weight: 600;
    transition: all 0.25s ease;
}

    .btn-login:hover:not(:disabled)[b-83x0uhfav9] {
        background: linear-gradient(135deg, #0056b3, #5200b0);
        transform: translateY(-2px);
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
    }

button.btn-danger[b-83x0uhfav9] {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    font-weight: 600;
    transition: all 0.25s ease;
}

    button.btn-danger:hover:not(:disabled)[b-83x0uhfav9] {
        background: linear-gradient(135deg, #b91c1c, #dc2626);
        transform: translateY(-2px);
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
    }

/* ---------- SPINNER IN BUTTON ---------- */
button:disabled .spinner-border[b-83x0uhfav9] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 576px) {
    .login-container[b-83x0uhfav9] {
        padding: 30px 20px;
    }

    .login-header-text[b-83x0uhfav9] {
        font-size: 1.5rem;
    }

    .form-control[b-83x0uhfav9] {
        height: 3rem;
        font-size: 0.95rem;
    }

    .btn-login[b-83x0uhfav9], button.btn-danger[b-83x0uhfav9] {
        padding: 10px 0;
        font-size: 0.95rem;
    }
}
/* /AccountC/Manage.razor.rz.scp.css */
/* ============================ */
/* FORM CARDS, INPUTS & GRADIENT BUTTONS */
/* Premium UI/UX                */
/* ============================ */

/* ---------- FORM CARD ---------- */
.form-card[b-fo9qqo1tdk] {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05);
}

    .form-card:hover[b-fo9qqo1tdk] {
        transform: translateY(-4px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    }

/* ---------- INPUTS ---------- */
input.form-control[b-fo9qqo1tdk],
textarea.form-control[b-fo9qqo1tdk],
select.form-control[b-fo9qqo1tdk] {
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid #cbd5e1;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    input.form-control:focus[b-fo9qqo1tdk],
    textarea.form-control:focus[b-fo9qqo1tdk],
    select.form-control:focus[b-fo9qqo1tdk] {
        border-color: #1e40af;
        box-shadow: 0 0 0 3px rgba(30,64,175,0.15);
        outline: none;
    }

/* ---------- PRIMARY GRADIENT BUTTON ---------- */
button.btn-primary[b-fo9qqo1tdk] {
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    transition: all 0.25s ease;
}

    button.btn-primary:hover:not(:disabled)[b-fo9qqo1tdk] {
        background: linear-gradient(90deg, #0ea5e9, #1e40af);
        transform: translateY(-2px);
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
    }

/* ---------- DANGER GRADIENT BUTTON ---------- */
button.btn-danger[b-fo9qqo1tdk] {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    transition: all 0.25s ease;
}

    button.btn-danger:hover:not(:disabled)[b-fo9qqo1tdk] {
        background: linear-gradient(90deg, #b91c1c, #dc2626);
        transform: translateY(-2px);
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.15);
    }

/* ---------- DISABLED BUTTON ---------- */
button:disabled[b-fo9qqo1tdk] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .form-card[b-fo9qqo1tdk] {
        padding: 1rem;
    }

    input.form-control[b-fo9qqo1tdk],
    textarea.form-control[b-fo9qqo1tdk],
    select.form-control[b-fo9qqo1tdk] {
        font-size: 0.95rem;
        padding: 0.45rem 0.9rem;
    }

    button.btn-primary[b-fo9qqo1tdk],
    button.btn-danger[b-fo9qqo1tdk] {
        font-size: 0.95rem;
        padding: 0.45rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .form-card[b-fo9qqo1tdk] {
        padding: 0.75rem;
    }

    input.form-control[b-fo9qqo1tdk],
    textarea.form-control[b-fo9qqo1tdk],
    select.form-control[b-fo9qqo1tdk] {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    button.btn-primary[b-fo9qqo1tdk],
    button.btn-danger[b-fo9qqo1tdk] {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}
/* /Account/Login.razor.rz.scp.css */
/* ==============================
   LOGIN PAGE - SIDE LOGO PROFESSIONAL UI
============================== */

/* ---------- Full Screen Center ---------- */
.full-screen-center[b-7kj615w1li] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    direction: rtl;
    overflow: hidden;
}

/* ---------- Login Container ---------- */
.login-container[b-7kj615w1li] {
    display: flex;
    max-width: 850px;
    width: 100%;
    border-radius: 25px;
    background-color: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: auto;
    max-height: 90vh;
}

    .login-container:hover[b-7kj615w1li] {
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

/* ---------- Branding Section ---------- */
.login-branding[b-7kj615w1li] {
    flex: 1;
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    color: #ffffff;
}

    .login-branding .login-logo[b-7kj615w1li] {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .login-branding .login-logo:hover[b-7kj615w1li] {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.2);
        }

    .login-branding .login-header-text[b-7kj615w1li] {
        font-size: 1.9rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.1;
        margin: 10px 0 0 0;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    }

/* ---------- Form Section ---------- */
.login-form-section[b-7kj615w1li] {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ---------- Form Controls ---------- */
.form-floating > label[b-7kj615w1li] {
    right: 0;
    left: unset;
    transform-origin: top right;
    font-size: 0.85rem;
    color: #6c757d;
}

.form-control[b-7kj615w1li] {
    height: 3rem;
    border-radius: 12px;
    border: 1px solid #ced4da;
    font-size: 0.85rem;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

    .form-control:focus[b-7kj615w1li] {
        border-color: #0d6efd;
        box-shadow: 0 0 8px rgba(13,110,253,0.15);
    }

/* ---------- Button ---------- */
.btn-login[b-7kj615w1li] {
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 0;
}

/* ---------- Checkbox ---------- */
.form-check[b-7kj615w1li] {
    padding-right: 1.2em;
    margin-bottom: 15px;
}

.form-check-input[b-7kj615w1li] {
    width: 1em;
    height: 1em;
}

/* ---------- Responsive for Tablets ---------- */
@media (max-width: 768px) {
    .full-screen-center[b-7kj615w1li] {
        padding: 15px 0;
        height: auto;
        min-height: 100vh;
    }

    .login-container[b-7kj615w1li] {
        flex-direction: column;
        max-width: 90%;
        box-shadow: none;
        border-radius: 15px;
    }

    .login-branding[b-7kj615w1li] {
        padding: 25px 15px;
    }

    .login-form-section[b-7kj615w1li] {
        padding: 25px 15px;
    }

    .login-branding .login-logo[b-7kj615w1li] {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .login-branding .login-header-text[b-7kj615w1li] {
        font-size: 1.6rem;
    }

    .form-control[b-7kj615w1li] {
        height: 2.5rem;
        font-size: 0.8rem;
    }

    .btn-login[b-7kj615w1li] {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* ---------- Responsive for Mobile ---------- */
@media (max-width: 576px) {
    .login-branding .login-header-text[b-7kj615w1li] {
        font-size: 1.4rem;
    }

    .login-logo[b-7kj615w1li] {
        width: 80px;
        height: 80px;
    }

    .form-control[b-7kj615w1li] {
        height: 2.2rem;
        font-size: 0.75rem;
    }

    .btn-login[b-7kj615w1li] {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .form-check[b-7kj615w1li] {
        margin-bottom: 12px;
    }
}
/* /Layout/ClientLayout.razor.rz.scp.css */
/* ---------------------------------------
   Modern Clean Mobile-First Header (Blue Theme)
---------------------------------------- */

/* Solid Blue Header */
.ecom-header[b-8ju15dofip] {
    background: #ffffff; /* white */
    color: #000; /* change text to black so it's visible */
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37,99,235,0.25);
}

    /* Flex Alignment */
    .ecom-header[b-8ju15dofip],
    .ecom-header .container-fluid[b-8ju15dofip] {
        display: flex !important;
        align-items: center !important;
        height: inherit !important;
    }

        .ecom-header .nav[b-8ju15dofip] {
            display: flex;
            align-items: center;
            gap: 8px;
        }

/* Brand */
.ecom-brand[b-8ju15dofip],
.icon-btn[b-8ju15dofip] {
    display: flex;
    align-items: center;
}

.brand-logo[b-8ju15dofip] {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    padding: 3px;
}

.brand-title[b-8ju15dofip] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

/* Icon Buttons */
.icon-btn[b-8ju15dofip] {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    color: #1E3A8A;
    font-size: 1.1rem;
    position: relative;
    transition: 0.15s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

    .icon-btn:hover[b-8ju15dofip] {
        transform: translateY(-1px);
    }

    .icon-btn:active[b-8ju15dofip] {
        transform: scale(0.94);
    }

/* Notification Badge */
.notif-count[b-8ju15dofip] {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: #F59E0B; /* amber */
    color: #000;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Dropdown */
.notif-dropdown[b-8ju15dofip] {
    background: #ffffff;
    color: #1F2937;
    min-width: 260px;
    max-height: 360px;
    overflow-y: auto;
    padding: 10px 0;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(37,99,235,0.18);
}

/* Dropdown Items */
.notif-item[b-8ju15dofip] {
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    background: none;
    transition: 0.12s ease;
    font-weight: 500;
}

    .notif-item:hover[b-8ju15dofip] {
        background: #EFF6FF;
    }

/* ---------------------------------------
   Mobile Optimization (Small Phones)
---------------------------------------- */
@media (max-width: 480px) {
    .ecom-header[b-8ju15dofip] {
        height: 52px;
    }

    .brand-logo[b-8ju15dofip] {
        width: 32px;
        height: 32px;
    }

    .brand-title[b-8ju15dofip] {
        display: none;
    }

    .icon-btn[b-8ju15dofip] {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .notif-dropdown[b-8ju15dofip] {
        max-width: calc(100vw - 22px);
        right: 10px;
        left: 10px;
    }
}

/* ---------------------------------------
   Desktop Enhancements
---------------------------------------- */
@media (min-width: 992px) {
    .ecom-header[b-8ju15dofip] {
        height: 66px;
    }

    .brand-title[b-8ju15dofip] {
        display: inline-block;
    }

    .icon-btn[b-8ju15dofip] {
        width: 44px;
        height: 44px;
    }
}

/* Body padding to avoid overlap */
main.modern-main[b-8ju15dofip],
body > .container[b-8ju15dofip],
body > .container-fluid[b-8ju15dofip] {
    padding-top: 70px;
}
/* Mobile tooltips */
/* Mobile tooltips - modern & professional */
.tooltip-label[b-8ju15dofip] {
    display: block;
    max-width: 120px; /* allow more space for text */
    min-width: 60px;
    font-size: 0.75rem; /* slightly bigger for readability */
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.75); /* dark semi-transparent background */
    border-radius: 6px;
    padding: 4px 6px; /* more comfortable padding */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 4px auto 0 auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none; /* avoid blocking clicks */
    position: absolute; /* position relative to button */
    z-index: 1000;
}

/* Show tooltip on hover or focus (desktop) */
.icon-btn:hover + .tooltip-label[b-8ju15dofip],
.icon-btn:focus + .tooltip-label[b-8ju15dofip] {
    opacity: 1;
    transform: translateY(-8px);
}

/* For mobile, you might want to show tooltip on tap or long-press instead */
@media (max-width: 480px) {
    .tooltip-label[b-8ju15dofip] {
        font-size: 0.8rem;
        max-width: 140px;
        padding: 6px 8px;
        background: rgba(0,0,0,0.85);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-t2sbag0ka3] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-t2sbag0ka3] {
    flex: 1;
}

/* ---------- Sidebar ---------- */
.sidebar[b-t2sbag0ka3] {
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    transition: all 0.3s ease;
}

/* ---------- Top Row ---------- */
.top-row[b-t2sbag0ka3] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 99999999 !important;
}

    .top-row[b-t2sbag0ka3]  a,
    .top-row[b-t2sbag0ka3]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        font-size: 0.9rem; /* تصغير الخط */
        padding: 0.25rem 0.5rem; /* تقليل المسافات داخل الأزرار */
    }

        .top-row[b-t2sbag0ka3]  a:hover,
        .top-row[b-t2sbag0ka3]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-t2sbag0ka3]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

/* ---------- Responsive for small screens ---------- */
@media (max-width: 640.98px) {
    .top-row[b-t2sbag0ka3] {
        justify-content: space-between;
        height: 3rem; /* أصغر ارتفاع */
        padding: 0.25rem 0.5rem;
    }

        .top-row[b-t2sbag0ka3]  a,
        .top-row[b-t2sbag0ka3]  .btn-link {
            margin-left: 0;
            font-size: 0.75rem; /* أصغر خط */
            padding: 0.2rem 0.4rem; /* أصغر أزرار */
        }

    .sidebar[b-t2sbag0ka3] {
        width: 100%;
        font-size: 0.75rem; /* تصغير كل النصوص داخل السايدبار */
        padding: 0.5rem 0.75rem;
    }
}

/* ---------- Responsive for larger screens ---------- */
@media (min-width: 641px) {
    .page[b-t2sbag0ka3] {
        flex-direction: row;
    }

    .sidebar[b-t2sbag0ka3] {
        width: auto;
        height: auto;
        position: sticky;
        top: 0;
    }

    .top-row[b-t2sbag0ka3] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-t2sbag0ka3]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-t2sbag0ka3],
    article[b-t2sbag0ka3] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* =====================================
   PREMIUM NAVBAR & SIDEBAR DESIGN
   Enterprise UI / Modern SaaS
===================================== */

/* =========================
   MAIN NAVBAR
========================= */
.main-navbar[b-170ghlwlz4] {
    height: auto;
    /*background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);*/
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    position: relative;
    z-index: 200;
    width: auto;
}

.navbar-brand[b-170ghlwlz4] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8f9fa !important;
}

.navbar-logo[b-170ghlwlz4] {
    height: 55px;
    margin-left: .5rem;
}

/* Toggler */
.navbar-toggler[b-170ghlwlz4] {
    border: none;
    background: rgba(255,255,255,0.15);
    padding: .3rem .6rem;
    border-radius: 6px;
}

.navbar-toggler-icon[b-170ghlwlz4] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================
   SECOND HEADER (ACTIONS)
========================= */
.top-actions[b-170ghlwlz4] {
    background: #ffffffee;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
    height: 5rem;
}

/* Flex container for right items */
.top-right-items[b-170ghlwlz4] {
    display: flex;
    align-items: center;
    gap: 10px; /* ثابت */
}

/* =========================
   NOTIFICATION BADGE + BOX
========================= */
.notif-badge[b-170ghlwlz4] {
    position: absolute;
    top: -4px;
    right: -6px;
    font-size: 0.65rem;
}

.notif-box[b-170ghlwlz4] {
    width: 260px;
    padding: 10px;
    border-radius: 12px;
    animation: fadeIn-b-170ghlwlz4 .2s ease-out;
}

/* Animation */
@keyframes fadeIn-b-170ghlwlz4 {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   USER MENU BUTTON
========================= */
.user-btn[b-170ghlwlz4] {
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 10px;
    height: 38px; /* ارتفاع موحد */
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* =========================
   SOUND ENABLE BUTTON
========================= */
.enable-notif-btn[b-170ghlwlz4] {
    background: linear-gradient(135deg, #1b263b, #415a77);
    color: #ffffff;
    border: none;
    padding: .45rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    height: 38px; /* نفس ارتفاع المستخدم والأيقونات */
    box-shadow: 0 2px 6px rgba(0,0,0,0.22);
    transition: 0.25s ease-in-out;
}

    .enable-notif-btn i[b-170ghlwlz4] {
        font-size: 1.1rem;
        color: #b6d8ff;
        transition: 0.25s ease;
    }

    .enable-notif-btn:hover[b-170ghlwlz4] {
        background: linear-gradient(135deg, #233044, #516789);
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.28);
    }

        .enable-notif-btn:hover i[b-170ghlwlz4] {
            color: #ffffff;
            transform: scale(1.12);
        }

    .enable-notif-btn:active[b-170ghlwlz4] {
        transform: scale(0.97);
    }

/* =========================
   SIDEBAR
========================= */
.nav-scrollable[b-170ghlwlz4] {
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    /*background: linear-gradient(180deg, #0d1b2a 0%, #0a1422 100%);*/
    backdrop-filter: blur(6px);
    border-left: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
    transition: all 0.25s ease-in-out;
}

/* =========================
   NAV ITEMS (PROFESSIONAL)
========================= */
.nav-item[b-170ghlwlz4]  a {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    letter-spacing: 0.4px;
    transition: all 0.18s ease;
    opacity: 0.95;
}

    .nav-item[b-170ghlwlz4]  a:hover {
        background: rgba(255,255,255,0.12);
        color: #415a77;
        transform: translateX(-3px);
        opacity: 1;
        box-shadow: 0 2px 6px rgba(255,255,255,0.06);
    }

    .nav-item[b-170ghlwlz4]  a.active {
        background: rgba(255,255,255,0.22);
        color: #ffffff !important;
        border-right: 3px solid #4dabf7;
        font-weight: 800;
        box-shadow: 0 3px 5px rgba(0,0,0,0.25);
        transform: translateX(-3px);
    }

/* =========================
   ICONS
========================= */
.bi[b-170ghlwlz4] {
    font-size: 1.35rem;
    color: #78c0ff;
    transition: 0.25s ease;
}

.nav-item[b-170ghlwlz4]  a:hover .bi {
    color: #ffffff;
    transform: scale(1.12);
}

.nav-item[b-170ghlwlz4]  a.active .bi {
    color: #b6e1ff;
}

/* =========================
   LOGO
========================= */
.navbar-logo[b-170ghlwlz4] {
    height: 70px;
    width: auto;
    margin-left: .5rem;
    filter: drop-shadow(0 1px 3px rgba(255,255,255,0.3));
}

/* =========================
   RESPONSIVE BEHAVIOR
========================= */
@media (min-width: 641px) {
    .navbar-toggler[b-170ghlwlz4] {
        display: none;
    }

    .collapse[b-170ghlwlz4] {
        display: block !important;
    }

    .nav-scrollable[b-170ghlwlz4] {
        height: calc(100vh - 3.7rem - 3.1rem);
        overflow-y: auto;
    }
}

/* =========================
   NOTIFICATION ANIMATIONS
========================= */
.notif-alert[b-170ghlwlz4] {
    animation: bellShake-b-170ghlwlz4 0.6s ease-in-out;
}

@keyframes bellShake-b-170ghlwlz4 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(20deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* =========================
   RESPONSIVE FOR SMALL DEVICES
========================= */
@media (max-width: 768px) {

    .top-right-items[b-170ghlwlz4] {
        gap: 6px;
    }

    .user-btn[b-170ghlwlz4] {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        height: 32px;
    }

    .enable-notif-btn[b-170ghlwlz4] {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        height: 32px;
    }

        .enable-notif-btn i[b-170ghlwlz4] {
            font-size: 0.95rem;
        }

    .navbar-logo[b-170ghlwlz4] {
        height: 45px;
    }

    .nav-scrollable[b-170ghlwlz4] {
        padding-top: 0.5rem;
        font-size: 0.75rem;
    }

    .nav-item[b-170ghlwlz4]  a {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        gap: 0.8rem;
    }

    .bi[b-170ghlwlz4] {
        font-size: 1.1rem;
    }

    .notif-badge[b-170ghlwlz4] {
        font-size: 0.55rem;
    }

    .notif-box[b-170ghlwlz4] {
        width: 220px;
        padding: 8px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 576px) {
    .top-actions[b-170ghlwlz4] {
        height: 4rem;
    }

    .user-btn[b-170ghlwlz4], .enable-notif-btn[b-170ghlwlz4] {
        font-size: 0.7rem;
        height: 28px;
        padding: 0.2rem 0.4rem;
    }

    .navbar-logo[b-170ghlwlz4] {
        height: 40px;
    }

    .nav-item[b-170ghlwlz4]  a {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .bi[b-170ghlwlz4] {
        font-size: 1rem;
    }

    .notif-box[b-170ghlwlz4] {
        width: 200px;
        padding: 6px;
    }

    .notif-badge[b-170ghlwlz4] {
        font-size: 0.5rem;
    }
}
/* /Layout/PublicLayout.razor.rz.scp.css */
/* Body */
body[b-jjq03a9f8d] {
    font-family: 'Noto Kufi Arabic', sans-serif;
    background-color: #f8f9fa; /* subtle light gray for professional look */
    color: #343a40;
}

/* Navbar */
.navbar[b-jjq03a9f8d] {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

/* Navbar Brand Logo */
.navbar-brand[b-jjq03a9f8d] {
    display: flex;
    align-items: center;
    gap: 12px; /* space between logo and title */
    font-size: 1.9rem;
    font-weight: 800;
    /*  color: #0d6efd !important;*/
    color: #2a3b55;
}

    /* Logo */
    .navbar-brand img.navbar-logo[b-jjq03a9f8d] {
        max-height: 50px;
        border-radius: 50%; /* circular logo looks modern */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* subtle soft shadow */
        object-fit: cover; /* ensures the image fills the circle nicely */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .navbar-brand img.navbar-logo:hover[b-jjq03a9f8d] {
            transform: scale(1.08); /* smooth zoom on hover */
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
        }

/* Nav Links */
.nav-link[b-jjq03a9f8d] {
    color: #495057 !important;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
    padding: 0.5rem 1rem;
}

    .nav-link.hover-primary:hover[b-jjq03a9f8d], .nav-link.active[b-jjq03a9f8d] {
        color: #0d6efd !important;
        background-color: rgba(13, 110, 253, 0.1);
        border-radius: 0.5rem;
    }

/* Buttons */
.btn[b-jjq03a9f8d] {
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary[b-jjq03a9f8d] {
    /* background: linear-gradient(135deg, #0d6efd, #6610f2);*/
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.btn-hover:hover[b-jjq03a9f8d] {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-brand[b-jjq03a9f8d] {
        font-size: 1.5rem;
    }

    .nav-link[b-jjq03a9f8d] {
        padding: 0.8rem 1.2rem;
    }

    .btn-primary[b-jjq03a9f8d] {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Main content spacing */
main[b-jjq03a9f8d] {
    padding: 1rem 0.5rem;
}
/* /Pages/AdminPage/Category_pages/CategoryList.razor.rz.scp.css */
/* =========================================
   IMAGE IN TABLE
========================================= */
.img-table[b-vsa8ybtrk2] {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: transform 0.25s ease;
    display: inline-block;
}

    .img-table:hover[b-vsa8ybtrk2] {
        transform: scale(1.8);
        z-index: 1000;
        position: relative;
    }

/* =========================================
   TABLE GENERAL STYLE
========================================= */
.table-responsive[b-vsa8ybtrk2] {
    overflow-x: auto;
}

.table th[b-vsa8ybtrk2],
.table td[b-vsa8ybtrk2] {
    vertical-align: middle;
    white-space: nowrap;
    padding: 0.4rem 0.6rem;
}

.table th[b-vsa8ybtrk2] {
    padding: 0.5rem 0.75rem;
}

    .table th i.bi[b-vsa8ybtrk2] {
        vertical-align: middle;
        font-size: 0.9rem;
        margin-left: 0.25rem;
    }

/* Reduce table icons on medium/mobile */
@media (max-width: 600px) {
    .table th i.bi[b-vsa8ybtrk2] {
        font-size: 0.75rem;
    }
}

/* Hide description + created date on small mobile */
@media (max-width: 500px) {
    .table td:nth-child(4)[b-vsa8ybtrk2],
    .table th:nth-child(4)[b-vsa8ybtrk2],
    .table td:nth-child(8)[b-vsa8ybtrk2],
    .table th:nth-child(8)[b-vsa8ybtrk2] {
        display: none;
    }
}

/* =========================================
   LOADING OVERLAY
========================================= */
.overlay-loader[b-vsa8ybtrk2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loading-container[b-vsa8ybtrk2] {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e3a8a;
    text-align: center;
}

.loading-logo[b-vsa8ybtrk2] {
    width: 70px;
    animation: pulse-b-vsa8ybtrk2 1.4s infinite;
}

@keyframes pulse-b-vsa8ybtrk2 {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* =========================================
   ULTRA-SMALL PAGINATION (Mobile)
========================================= */
@media (max-width: 576px) {

    .pagination-sm-mobile .page-link[b-vsa8ybtrk2] {
        padding: 1px 4px;
        font-size: 9px;
        line-height: 1;
        min-width: 18px;
    }

    .pagination-sm-mobile .page-item[b-vsa8ybtrk2] {
        margin: 0 1px;
    }

    .pagination-sm-mobile[b-vsa8ybtrk2] {
        gap: 1px;
    }

        .pagination-sm-mobile .page-item.active .page-link[b-vsa8ybtrk2] {
            padding: 1px 4px;
            font-size: 9px;
        }
}

/* =========================================
   MODAL — GENERAL SMALL STYLE
========================================= */
.modal-sm-mobile .modal-content[b-vsa8ybtrk2] {
    border-radius: 15px;
    padding: 10px;
}

.modal-sm-mobile .modal-header[b-vsa8ybtrk2],
.modal-sm-mobile .modal-body[b-vsa8ybtrk2],
.modal-sm-mobile .modal-footer[b-vsa8ybtrk2] {
    padding: 8px 12px;
}

.modal-sm-mobile .form-control[b-vsa8ybtrk2],
.modal-sm-mobile .form-select[b-vsa8ybtrk2] {
    padding: 6px 10px;
    font-size: 14px;
}

.modal-sm-mobile label[b-vsa8ybtrk2] {
    font-size: 13px;
    font-weight: 600;
}

.modal-sm-mobile .btn[b-vsa8ybtrk2] {
    padding: 6px 12px;
    font-size: 14px;
}

/* =========================================
   MOBILE — ULTRA COMPACT (MAX 576PX)
========================================= */
@media (max-width: 576px) {

    /* Shrink modal */
    .modal-sm-mobile .modal-dialog[b-vsa8ybtrk2] {
        max-width: 85% !important;
        margin: auto;
        transform: scale(0.90);
    }

    .modal-sm-mobile .modal-content[b-vsa8ybtrk2] {
        border-radius: 12px;
    }

    .modal-sm-mobile .modal-header[b-vsa8ybtrk2] {
        padding: 6px 10px;
    }

    .modal-sm-mobile .modal-title[b-vsa8ybtrk2] {
        font-size: 14px;
    }

    .modal-sm-mobile .btn-close[b-vsa8ybtrk2] {
        transform: scale(0.8);
    }

    /* Body */
    .modal-sm-mobile .modal-body[b-vsa8ybtrk2] {
        padding: 10px 12px;
    }

    /* Inputs */
    .modal-sm-mobile .form-control[b-vsa8ybtrk2],
    .modal-sm-mobile .form-select[b-vsa8ybtrk2] {
        padding: 4px 6px !important;
        height: 32px;
        font-size: 12px !important;
    }

    .modal-sm-mobile label[b-vsa8ybtrk2] {
        font-size: 12px;
        margin-bottom: 2px;
    }

    /* Image inside modal */
    .modal-sm-mobile img[b-vsa8ybtrk2] {
        width: 70px !important;
        height: 70px !important;
    }

    /* Footer */
    .modal-sm-mobile .modal-footer[b-vsa8ybtrk2] {
        padding: 6px 10px;
        gap: 5px;
    }

        .modal-sm-mobile .modal-footer .btn[b-vsa8ybtrk2] {
            padding: 4px 8px;
            font-size: 12px;
        }

    /* Table buttons */
    .table .btn[b-vsa8ybtrk2] {
        padding: 3px 6px !important;
        font-size: 11px !important;
    }

    .table th[b-vsa8ybtrk2], .table td[b-vsa8ybtrk2] {
        font-size: 12px !important;
        padding: 6px !important;
    }

    /* Top buttons (add / filter / …) */
    .btn[b-vsa8ybtrk2] {
        padding: 5px 8px !important;
        font-size: 12px !important;
    }

        .btn i[b-vsa8ybtrk2] {
            margin-inline-end: 2px;
            font-size: 14px;
        }

    /* Dropdown */
    .dropdown-menu .dropdown-item[b-vsa8ybtrk2] {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    /* Search input */
    input.form-control[b-vsa8ybtrk2] {
        padding: 4px 6px !important;
        height: 34px !important;
        font-size: 12px !important;
    }

    /* Extra mobile sizing */
    .img-table[b-vsa8ybtrk2] {
        width: 35px;
        height: 35px;
    }

    .loading-container[b-vsa8ybtrk2] {
        height: 150px;
    }

    .loading-logo[b-vsa8ybtrk2] {
        width: 60px;
    }
}
/* /Pages/AdminPage/ClientItem_pages/Cart.razor.rz.scp.css */
/* =================================================
   GLOBAL – Ultra Compact Blue Theme
================================================= */
*[b-25ieryy32a],
*[b-25ieryy32a]::before,
*[b-25ieryy32a]::after {
    box-sizing: border-box;
}

body[b-25ieryy32a] {
    font-family: 'Tajawal', sans-serif;
    background: #ffffff;
    color: #1f2937;
    font-size: 0.85rem;
    overflow-x: hidden;
}

/* =================================================
   LAYOUT
================================================= */
.cart-page.container[b-25ieryy32a] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px;
}

/* =================================================
   DESKTOP CART TABLE
================================================= */
.table-responsive[b-25ieryy32a] {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
    overflow-x: auto;
}

.table[b-25ieryy32a] {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

    .table thead th[b-25ieryy32a] {
        background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
        color: #ffffff;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 12px 10px;
        text-align: center;
        border: none;
    }

    .table tbody tr[b-25ieryy32a] {
        border-bottom: 1px solid #e5e7eb;
        transition: background-color 0.2s ease;
    }

        .table tbody tr:hover[b-25ieryy32a] {
            background: #eff6ff;
        }

    .table td[b-25ieryy32a] {
        padding: 10px 8px;
        text-align: center;
        vertical-align: middle;
        font-size: 0.83rem;
        color: #1f2937;
        border: none;
    }

/* Product Image */
.cart-img[b-25ieryy32a] {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.12);
}

/* =================================================
   QUANTITY CONTROLS
================================================= */
.qty-box[b-25ieryy32a] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .qty-box button[b-25ieryy32a] {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        border: 1px solid #dbeafe;
        background: #f8fafc;
        font-size: 0.9rem;
        color: #1e40af;
        cursor: pointer;
    }

        .qty-box button:hover[b-25ieryy32a] {
            background: #e0e7ff;
        }

    .qty-box span[b-25ieryy32a] {
        min-width: 24px;
        text-align: center;
        font-weight: 600;
    }

/* =================================================
   DESKTOP SUMMARY
================================================= */
.card .p-3 p[b-25ieryy32a] {
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.card .p-3 h5[b-25ieryy32a] {
    font-weight: 700;
}

/* =================================================
   BUTTONS
================================================= */
.btn[b-25ieryy32a] {
    font-size: 0.85rem;
}

.btn-primary[b-25ieryy32a] {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

    .btn-primary:hover[b-25ieryy32a] {
        background: linear-gradient(135deg, #1d4ed8, #2563eb);
    }

.btn-link[b-25ieryy32a] {
    text-decoration: none !important;
    font-weight: 500;
}

/* =================================================
   MOBILE CART (CARDS ONLY)
================================================= */
.cart-mobile[b-25ieryy32a] {
    padding-bottom: 90px;
}

.cart-card[b-25ieryy32a] {
    display: flex;
    gap: 12px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

    .cart-card img[b-25ieryy32a] {
        width: 82px;
        height: 82px;
        border-radius: 14px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .cart-card .info[b-25ieryy32a] {
        flex: 1;
    }

    .cart-card h6[b-25ieryy32a] {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .cart-card small[b-25ieryy32a] {
        color: #6b7280;
        font-size: 0.78rem;
    }

    .cart-card strong[b-25ieryy32a] {
        display: block;
        margin-top: 2px;
        font-size: 1rem;
        color: #1e40af;
    }

    /* Actions */
    .cart-card .actions[b-25ieryy32a] {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

        .cart-card .actions button[b-25ieryy32a] {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            border: 1px solid #dbeafe;
            background: #f8fafc;
        }

    .cart-card .remove[b-25ieryy32a] {
        margin-left: auto;
        border: none;
        background: none;
        color: #dc2626;
        font-size: 0.7rem;
    }

/* =================================================
   STICKY MOBILE CHECKOUT BAR
================================================= */
/*.checkout-bar {
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}*/



/* =================================================
   STICKY MOBILE CHECKOUT BAR (PERFECT MOBILE)
================================================= */
.checkout-bar[b-25ieryy32a] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    background: #ffffff;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 100vw;
    box-sizing: border-box;
}




.checkout-total[b-25ieryy32a] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.checkout-btn[b-25ieryy32a] {
    margin-left: auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 15px;
}






    .checkout-bar small[b-25ieryy32a] {
        color: #6b7280;
    }

    .checkout-bar strong[b-25ieryy32a] {
        font-size: 1rem;
        color: #1e40af;
    }

/* =================================================
   CONFIRMATION MODAL (CUSTOM)
================================================= */
.confirm-backdrop[b-25ieryy32a] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.confirm-box[b-25ieryy32a] {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

    .confirm-box h5[b-25ieryy32a] {
        font-size: 1rem;
        font-weight: 700;
    }

    .confirm-box .summary div[b-25ieryy32a] {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .confirm-box .total[b-25ieryy32a] {
        border-top: 1px solid #e5e7eb;
        padding-top: 10px;
        font-size: 1rem;
        font-weight: 700;
        color: #1e40af;
    }

/* =================================================
   ACCESSIBILITY
================================================= */
button:focus[b-25ieryy32a],
.btn:focus[b-25ieryy32a] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
/* /Pages/AdminPage/ClientItem_pages/ClientItemList.razor.rz.scp.css */

.loading-container[b-kp7i3719rt] {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1e3a8a;
}

.spinner[b-kp7i3719rt] {
    width: 3rem;
    height: 3rem;
}

/* Loading Screen */
.loading-container[b-kp7i3719rt] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-logo[b-kp7i3719rt] {
    width: 140px;
    opacity: 0.8;
}
/* /Pages/AdminPage/ClientItem_pages/ClientItemsShop.razor.rz.scp.css */
/* =================================================
   GLOBAL – Clean Professional Blue Theme
================================================= */
*[b-l9ms6wq8ci] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body[b-l9ms6wq8ci] {
    font-family: 'Tajawal', sans-serif;
    background: #FFFFFF;
    color: #1F2937;
    overflow-x: hidden;
}

.shop-page[b-l9ms6wq8ci] {
    min-height: 100vh;
    padding-bottom: 100px;
}

/* =================================================
   HEADER
================================================= */
.shop-header[b-l9ms6wq8ci] {
    position: sticky;
    top: 85px;
    z-index: 900;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 1rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

    .shop-header .shop-title[b-l9ms6wq8ci] {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1E3A8A;
    }

.header-actions[b-l9ms6wq8ci] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =================================================
   SEARCH BOX
================================================= */
.search-box .form-control[b-l9ms6wq8ci] {
    border-radius: 14px;
    padding: 0.6rem 0.8rem;
    border: 1px solid #E5E7EB;
    background: #FFF;
    transition: .2s ease;
}

    .search-box .form-control:focus[b-l9ms6wq8ci] {
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
    }

/* =================================================
   BUTTONS
================================================= */
.btn-cart[b-l9ms6wq8ci],
.btn-cat[b-l9ms6wq8ci] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    color: #1F2937;
    transition: .2s ease;
    position: relative;
}

    .btn-cart:hover[b-l9ms6wq8ci],
    .btn-cat:hover[b-l9ms6wq8ci] {
        background: #EFF6FF;
        box-shadow: 0 4px 16px rgba(37,99,235,0.08);
    }

.cart-badge[b-l9ms6wq8ci] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #2563EB;
    color: #FFF;
    font-size: .75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =================================================
   CATEGORIES
================================================= */
.category-card[b-l9ms6wq8ci] {
    background: #FFF;
    padding: 1.4rem 1rem;
    border-radius: 24px;
    border: 1px solid #EEF2FF;
    top: 180px;
    z-index:500!important;
}

.category-list .list-group-item[b-l9ms6wq8ci] {
    padding: .7rem;
    margin-bottom: .5rem;
    border-radius: 14px;
    text-align: center;
    background: #FFF;
    color: #1F2937;
    font-weight: 600;
    border: 1px solid #E5E7EB;
    transition: .2s ease;
}

    .category-list .list-group-item.active[b-l9ms6wq8ci],
    .category-list .list-group-item:hover[b-l9ms6wq8ci] {
        background: #EFF6FF;
        border-color: #93C5FD;
        color: #1D4ED8;
    }

.btn-category[b-l9ms6wq8ci] {
    padding: .5rem .8rem;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    color: #1F2937;
    font-weight: 600;
    white-space: nowrap;
    transition: .2s ease;
}

    .btn-category.active[b-l9ms6wq8ci],
    .btn-category:hover[b-l9ms6wq8ci] {
        background: #DBEAFE;
        border-color: #93C5FD;
        color: #1D4ED8;
    }

.mobile-category-scroll[b-l9ms6wq8ci] {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* =================================================
   PRODUCT CARDS
================================================= */
.product-card[b-l9ms6wq8ci] {
    background: #FFF;
    border: 1px solid #EEF2FF;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    transition: .25s ease;
    position: relative;
}

    .product-card:hover[b-l9ms6wq8ci] {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(37,99,235,0.08);
    }

.product-media[b-l9ms6wq8ci] {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-media img[b-l9ms6wq8ci] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.no-image[b-l9ms6wq8ci] {
    color: #9CA3AF;
}

.product-body[b-l9ms6wq8ci] {
    padding: 1rem;
}

.product-name[b-l9ms6wq8ci] {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
}

.category-tag[b-l9ms6wq8ci] {
    font-size: .6rem;
    padding: .35rem .7rem;
    background: #EFF6FF;
    color: #1D4ED8;
    border-radius: 999px;
    font-weight: 600;
}

.product-price[b-l9ms6wq8ci] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1E3A8A;
}

/* =================================================
   QUANTITY & ADD TO CART
================================================= */
.qty-controls[b-l9ms6wq8ci] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.qty-input[b-l9ms6wq8ci] {
    width: 60px;
    text-align: center;
    background: #FFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.qty-btn[b-l9ms6wq8ci],
.add-to-cart[b-l9ms6wq8ci] {
    background: #EFF6FF;
    color: #1D4ED8;
    border-radius: 12px;
    border: 1px solid #BFDBFE;
    font-weight: 600;
    padding: .4rem .7rem;
    transition: .2s ease;
}

    .qty-btn:hover[b-l9ms6wq8ci],
    .add-to-cart:hover[b-l9ms6wq8ci] {
        background: #DBEAFE;
        box-shadow: 0 4px 14px rgba(37,99,235,0.12);
    }

.add-to-cart[b-l9ms6wq8ci] {
    width: 100%;
    margin-top: .3rem;
}

.added-badge[b-l9ms6wq8ci] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #DBEAFE;
    color: #1D4ED8;
    padding: .3rem .7rem;
    border-radius: 10px;
    font-size: .75rem;
    font-weight: 700;
}

/* =================================================
   PAGINATION
================================================= */
.pagination[b-l9ms6wq8ci],
.custom-pagination[b-l9ms6wq8ci] {
    display: flex;
    gap: .4rem;
    justify-content: center;
    overflow-x: auto;
    padding: 1rem 0;
}

    .pagination .page-link[b-l9ms6wq8ci],
    .custom-pagination .page-link[b-l9ms6wq8ci] {
        min-width: 38px;
        padding: .35rem .6rem;
        background: #FFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        font-weight: 600;
        color: #1F2937;
    }

    .pagination .page-item.active .page-link[b-l9ms6wq8ci] {
        background: #2563EB;
        color: #FFF;
        border-color: #2563EB;
    }

    .pagination .page-item.disabled .page-link[b-l9ms6wq8ci] {
        background: #F3F4F6;
        color: #9CA3AF;
    }

/* =================================================
   MOBILE RESPONSIVE
================================================= */
@media (max-width: 768px) {
    body[b-l9ms6wq8ci] {
        font-size: .85rem;
    }

    .shop-header .shop-title[b-l9ms6wq8ci] {
        font-size: 1.25rem;
    }

    .product-media[b-l9ms6wq8ci] {
        height: 180px;
    }

    .product-name[b-l9ms6wq8ci] {
        font-size: .9rem;
    }

    .product-price[b-l9ms6wq8ci] {
        font-size: 1.1rem;
    }






    .pagination-sm-mobile .page-link[b-l9ms6wq8ci] {
        padding: 1px 4px;
        font-size: 9px;
        line-height: 1;
        min-width: 18px;
    }

    .pagination-sm-mobile .page-item[b-l9ms6wq8ci] {
        margin: 0 1px;
    }

    .pagination-sm-mobile[b-l9ms6wq8ci] {
        gap: 1px;
    }

        .pagination-sm-mobile .page-item.active .page-link[b-l9ms6wq8ci] {
            padding: 1px 4px;
            font-size: 9px;
        }








}

@media (max-width: 500px) {
    body[b-l9ms6wq8ci] {
        font-size: .78rem;
    }

    .shop-header .shop-title[b-l9ms6wq8ci] {
        font-size: 1.1rem;
    }

    .product-media[b-l9ms6wq8ci] {
        height: 150px;
    }

    .product-name[b-l9ms6wq8ci] {
        font-size: .85rem;
    }

    .product-price[b-l9ms6wq8ci] {
        font-size: 1rem;
    }

    .btn-cart[b-l9ms6wq8ci], .btn-cat[b-l9ms6wq8ci], .btn-category[b-l9ms6wq8ci] {
        padding: .35rem .55rem;
        font-size: .75rem;
        border-radius: 30px;
    }

    .category-tag[b-l9ms6wq8ci] {
        font-size: .48rem;
    }

    .pagination[b-l9ms6wq8ci] {
        gap: .3rem;
    }







    .pagination-sm-mobile .page-link[b-l9ms6wq8ci] {
        padding: 1px 4px;
        font-size: 9px;
        line-height: 1;
        min-width: 18px;
    }

    .pagination-sm-mobile .page-item[b-l9ms6wq8ci] {
        margin: 0 1px;
    }

    .pagination-sm-mobile[b-l9ms6wq8ci] {
        gap: 1px;
    }

        .pagination-sm-mobile .page-item.active .page-link[b-l9ms6wq8ci] {
            padding: 1px 4px;
            font-size: 9px;
        }















}

/* =================================================
   MOBILE SIDEBAR
================================================= */
.mobile-menu-toggle[b-l9ms6wq8ci] {
    position: fixed;
    top: 160px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563EB;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 9999;
    cursor: pointer;
    transition: .2s ease;
}

    .mobile-menu-toggle:hover[b-l9ms6wq8ci] {
        background: #1D4ED8;
    }

@media (min-width: 992px) {
    .mobile-menu-toggle[b-l9ms6wq8ci],
    .btn-cat[b-l9ms6wq8ci],
    .mobile-side-categories[b-l9ms6wq8ci] {
        display: none !important;
    }
}

.mobile-side-categories[b-l9ms6wq8ci] {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100vh;
    padding: 1rem;
    background: #FFF;
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 0 16px rgba(0,0,0,0.15);
    overflow-y: auto;
    transition: .35s ease;
    z-index: 9999;
}

    .mobile-side-categories.show[b-l9ms6wq8ci] {
        left: 0;
    }

    .mobile-side-categories .btn-category[b-l9ms6wq8ci] {
        width: 100%;
        padding: .6rem .8rem;
        margin-bottom: .5rem;
        border-radius: 12px;
        text-align: center;
    }
/* /Pages/AdminPage/ClientItem_pages/ClientOrderHistory.razor.rz.scp.css */

body[b-rq7q69qb0a] {
    background-color: #F8FAFF;
    font-family: 'Tajawal', sans-serif !important;
    color: #1F2937;
    font-size: 0.9rem;
}

.container[b-rq7q69qb0a] {
    max-width: 1100px;
}

.loading-container[b-rq7q69qb0a] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-logo[b-rq7q69qb0a] {
    width: 110px;
    opacity: 0.85;
}

h3[b-rq7q69qb0a] {
    font-weight: 800 !important;
    font-size: 1.6rem;
    color: #1E3A8A;
}

.row .form-control[b-rq7q69qb0a] {
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #DBEAFE;
    background: #FFFFFF;
    transition: 0.2s;
    font-size: 0.9rem;
}

    .row .form-control:focus[b-rq7q69qb0a] {
        border-color: #2563EB;
        box-shadow: 0 0 4px rgba(37,99,235,0.25);
    }

button.btn[b-rq7q69qb0a] {
    border-radius: 10px !important;
    font-weight: 600;
    padding: 7px 14px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #1E3A8A, #1D4ED8, #2563EB);
    color: #FFFFFF;
    border: none;
}

.table-responsive[b-rq7q69qb0a] {
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 18px rgba(37,99,235,0.05);
    padding: 5px;
}

.table[b-rq7q69qb0a] {
    background: #FFFFFF;
    font-size: 0.85rem;
}

.table-primary th[b-rq7q69qb0a] {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #1E3A8A !important;
    color: #FFFFFF !important;
}

.table-hover tbody tr:hover[b-rq7q69qb0a] {
    background-color: #EFF6FF;
}

.highlight-order[b-rq7q69qb0a] {
    animation: highlight-b-rq7q69qb0a 1.4s ease-out;
}

@keyframes highlight-b-rq7q69qb0a {
    0% {
        background-color: #DBEAFE;
    }

    100% {
        background-color: transparent;
    }
}

.badge[b-rq7q69qb0a] {
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 6px 10px;
}

@media (max-width: 768px) {
    table thead[b-rq7q69qb0a] {
        display: none !important;
    }

    table tbody tr[b-rq7q69qb0a] {
        display: block;
        margin-bottom: 10px;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(37,99,235,0.06);
    }

        table tbody tr td[b-rq7q69qb0a] {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #DBEAFE;
        }

            table tbody tr td[b-rq7q69qb0a]::before {
                content: attr(data-label);
                font-weight: 700;
                color: #1E3A8A;
            }
}

/* /Pages/AdminPage/ClientItem_pages/OrderConfirmation.razor.rz.scp.css */
body[b-ol3i5oke0h] {
    background: #f8fafc;
    font-family: 'Tajawal', sans-serif;
    color: #1f2937;
}

/* Header */
.order-header h3[b-ol3i5oke0h] {
    font-weight: 700;
    color: #1e3a8a;
}

.order-header p[b-ol3i5oke0h] {
    margin: 2px 0;
}

/* Desktop Table */
.table-responsive[b-ol3i5oke0h] {
    border-radius: 14px;
    overflow-x: auto;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
}

.table th[b-ol3i5oke0h] {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.table td[b-ol3i5oke0h] {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #e5e7eb;
}

.table img.item-image[b-ol3i5oke0h] {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}

/* Mobile Cards */
.order-card[b-ol3i5oke0h] {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    .order-card img[b-ol3i5oke0h] {
        width: 82px;
        height: 82px;
        border-radius: 14px;
        object-fit: cover;
    }

    .order-card .info h6[b-ol3i5oke0h] {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .order-card .info small[b-ol3i5oke0h] {
        font-size: 0.78rem;
        display: block;
        color: #6b7280;
    }

    .order-card .info strong[b-ol3i5oke0h] {
        color: #1e40af;
        font-size: 1rem;
        display: block;
        margin-top: 2px;
    }

/* Summary card */
.order-summary-card[b-ol3i5oke0h] {
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
    margin-bottom: 12px;
}

    .order-summary-card div[b-ol3i5oke0h] {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .order-summary-card .total[b-ol3i5oke0h] {
        font-size: 1rem;
        color: #1e40af;
        border-top: 1px solid #e5e7eb;
        padding-top: 6px;
    }

/* Mobile Actions */
.mobile-actions[b-ol3i5oke0h] {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .mobile-actions .btn[b-ol3i5oke0h] {
        flex: 1;
        font-size: 0.85rem;
    }
/* /Pages/AdminPage/Client_pages/Clientlist.razor.rz.scp.css */
/*
.overlay-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}*/



.table th[b-uxl9z4vzpl] {
    padding: 0.5rem 0.75rem;
}

    .table th i.bi[b-uxl9z4vzpl] {
        vertical-align: middle;
        font-size: 0.9rem;
        margin-left: 0.25rem;
    }

/* Reduce table icons on medium/mobile */
@media (max-width: 600px) {
    .table th i.bi[b-uxl9z4vzpl] {
        font-size: 0.75rem;
    }
}

/* Hide description + created date on small mobile */
@media (max-width: 500px) {
    .table td:nth-child(4)[b-uxl9z4vzpl],
    .table th:nth-child(4)[b-uxl9z4vzpl],
    .table td:nth-child(8)[b-uxl9z4vzpl],
    .table th:nth-child(8)[b-uxl9z4vzpl] {
        display: none;
    }
}

/* =========================================
   LOADING OVERLAY
========================================= */
.overlay-loader[b-uxl9z4vzpl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loading-container[b-uxl9z4vzpl] {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e3a8a;
    text-align: center;
}

.loading-logo[b-uxl9z4vzpl] {
    width: 70px;
    animation: pulse-b-uxl9z4vzpl 1.4s infinite;
}

@keyframes pulse-b-uxl9z4vzpl {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* =========================================
   ULTRA-SMALL PAGINATION (Mobile)
========================================= */
@media (max-width: 576px) {

    .pagination-sm-mobile .page-link[b-uxl9z4vzpl] {
        padding: 1px 4px;
        font-size: 9px;
        line-height: 1;
        min-width: 18px;
    }

    .pagination-sm-mobile .page-item[b-uxl9z4vzpl] {
        margin: 0 1px;
    }

    .pagination-sm-mobile[b-uxl9z4vzpl] {
        gap: 1px;
    }

        .pagination-sm-mobile .page-item.active .page-link[b-uxl9z4vzpl] {
            padding: 1px 4px;
            font-size: 9px;
        }
}

/* =========================================
   MODAL — GENERAL SMALL STYLE
========================================= */
.modal-sm-mobile .modal-content[b-uxl9z4vzpl] {
    border-radius: 15px;
    padding: 10px;
}

.modal-sm-mobile .modal-header[b-uxl9z4vzpl],
.modal-sm-mobile .modal-body[b-uxl9z4vzpl],
.modal-sm-mobile .modal-footer[b-uxl9z4vzpl] {
    padding: 8px 12px;
}

.modal-sm-mobile .form-control[b-uxl9z4vzpl],
.modal-sm-mobile .form-select[b-uxl9z4vzpl] {
    padding: 6px 10px;
    font-size: 14px;
}

.modal-sm-mobile label[b-uxl9z4vzpl] {
    font-size: 13px;
    font-weight: 600;
}

.modal-sm-mobile .btn[b-uxl9z4vzpl] {
    padding: 6px 12px;
    font-size: 14px;
}

/* =========================================
   MOBILE — ULTRA COMPACT (MAX 576PX)
========================================= */
@media (max-width: 576px) {

    /* Shrink modal */
    .modal-sm-mobile .modal-dialog[b-uxl9z4vzpl] {
        max-width: 85% !important;
        margin: auto;
        transform: scale(0.90);
    }

    .modal-sm-mobile .modal-content[b-uxl9z4vzpl] {
        border-radius: 12px;
    }

    .modal-sm-mobile .modal-header[b-uxl9z4vzpl] {
        padding: 6px 10px;
    }

    .modal-sm-mobile .modal-title[b-uxl9z4vzpl] {
        font-size: 14px;
    }

    .modal-sm-mobile .btn-close[b-uxl9z4vzpl] {
        transform: scale(0.8);
    }

    /* Body */
    .modal-sm-mobile .modal-body[b-uxl9z4vzpl] {
        padding: 10px 12px;
    }

    /* Inputs */
    .modal-sm-mobile .form-control[b-uxl9z4vzpl],
    .modal-sm-mobile .form-select[b-uxl9z4vzpl] {
        padding: 4px 6px !important;
        height: 32px;
        font-size: 12px !important;
    }

    .modal-sm-mobile label[b-uxl9z4vzpl] {
        font-size: 12px;
        margin-bottom: 2px;
    }

    /* Image inside modal */
    .modal-sm-mobile img[b-uxl9z4vzpl] {
        width: 70px !important;
        height: 70px !important;
    }

    /* Footer */
    .modal-sm-mobile .modal-footer[b-uxl9z4vzpl] {
        padding: 6px 10px;
        gap: 5px;
    }

        .modal-sm-mobile .modal-footer .btn[b-uxl9z4vzpl] {
            padding: 4px 8px;
            font-size: 12px;
        }

    /* Table buttons */
    .table .btn[b-uxl9z4vzpl] {
        padding: 3px 6px !important;
        font-size: 11px !important;
    }

    .table th[b-uxl9z4vzpl], .table td[b-uxl9z4vzpl] {
        font-size: 12px !important;
        padding: 6px !important;
    }

    /* Top buttons (add / filter / …) */
    .btn[b-uxl9z4vzpl] {
        padding: 5px 8px !important;
        font-size: 12px !important;
    }

        .btn i[b-uxl9z4vzpl] {
            margin-inline-end: 2px;
            font-size: 14px;
        }

    /* Dropdown */
    .dropdown-menu .dropdown-item[b-uxl9z4vzpl] {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    /* Search input */
    input.form-control[b-uxl9z4vzpl] {
        padding: 4px 6px !important;
        height: 34px !important;
        font-size: 12px !important;
    }

    /* Extra mobile sizing */
    .img-table[b-uxl9z4vzpl] {
        width: 35px;
        height: 35px;
    }

    .loading-container[b-uxl9z4vzpl] {
        height: 150px;
    }

    .loading-logo[b-uxl9z4vzpl] {
        width: 60px;
    }
}
/* /Pages/AdminPage/Item_pages/ItemList.razor.rz.scp.css */
/* =========================================
   IMAGE IN TABLE
========================================= */
.img-table[b-iiuao1mey4] {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: transform 0.25s ease;
    display: inline-block;
}

    .img-table:hover[b-iiuao1mey4] {
        transform: scale(1.8);
        z-index: 1000;
        position: relative;
    }

/* =========================================
   TABLE GENERAL STYLE
========================================= */
.table-responsive[b-iiuao1mey4] {
    overflow-x: auto;
}

.table th[b-iiuao1mey4],
.table td[b-iiuao1mey4] {
    vertical-align: middle;
    white-space: nowrap;
    padding: 0.4rem 0.6rem;
}

.table th[b-iiuao1mey4] {
    padding: 0.5rem 0.75rem;
}

    .table th i.bi[b-iiuao1mey4] {
        vertical-align: middle;
        font-size: 0.9rem;
        margin-left: 0.25rem;
    }

/* Reduce table icons on medium/mobile */
@media (max-width: 600px) {
    .table th i.bi[b-iiuao1mey4] {
        font-size: 0.75rem;
    }
}

/* Hide description + created date on small mobile */
@media (max-width: 500px) {
    .table td:nth-child(4)[b-iiuao1mey4],
    .table th:nth-child(4)[b-iiuao1mey4],
    .table td:nth-child(8)[b-iiuao1mey4],
    .table th:nth-child(8)[b-iiuao1mey4] {
        display: none;
    }
}

/* =========================================
   LOADING OVERLAY
========================================= */
.overlay-loader[b-iiuao1mey4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loading-container[b-iiuao1mey4] {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e3a8a;
    text-align: center;
}

.loading-logo[b-iiuao1mey4] {
    width: 70px;
    animation: pulse-b-iiuao1mey4 1.4s infinite;
}

@keyframes pulse-b-iiuao1mey4 {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* =========================================
   ULTRA-SMALL PAGINATION (Mobile)
========================================= */
@media (max-width: 576px) {

    .pagination-sm-mobile .page-link[b-iiuao1mey4] {
        padding: 1px 4px;
        font-size: 9px;
        line-height: 1;
        min-width: 18px;
    }

    .pagination-sm-mobile .page-item[b-iiuao1mey4] {
        margin: 0 1px;
    }

    .pagination-sm-mobile[b-iiuao1mey4] {
        gap: 1px;
    }

        .pagination-sm-mobile .page-item.active .page-link[b-iiuao1mey4] {
            padding: 1px 4px;
            font-size: 9px;
        }
}

/* =========================================
   MODAL — GENERAL SMALL STYLE
========================================= */
.modal-sm-mobile .modal-content[b-iiuao1mey4] {
    border-radius: 15px;
    padding: 10px;
}

.modal-sm-mobile .modal-header[b-iiuao1mey4],
.modal-sm-mobile .modal-body[b-iiuao1mey4],
.modal-sm-mobile .modal-footer[b-iiuao1mey4] {
    padding: 8px 12px;
}

.modal-sm-mobile .form-control[b-iiuao1mey4],
.modal-sm-mobile .form-select[b-iiuao1mey4] {
    padding: 6px 10px;
    font-size: 14px;
}

.modal-sm-mobile label[b-iiuao1mey4] {
    font-size: 13px;
    font-weight: 600;
}

.modal-sm-mobile .btn[b-iiuao1mey4] {
    padding: 6px 12px;
    font-size: 14px;
}

/* =========================================
   MOBILE — ULTRA COMPACT (MAX 576PX)
========================================= */
@media (max-width: 576px) {

    /* Shrink modal */
    .modal-sm-mobile .modal-dialog[b-iiuao1mey4] {
        max-width: 85% !important;
        margin: auto;
        transform: scale(0.90);
    }

    .modal-sm-mobile .modal-content[b-iiuao1mey4] {
        border-radius: 12px;
    }

    .modal-sm-mobile .modal-header[b-iiuao1mey4] {
        padding: 6px 10px;
    }

    .modal-sm-mobile .modal-title[b-iiuao1mey4] {
        font-size: 14px;
    }

    .modal-sm-mobile .btn-close[b-iiuao1mey4] {
        transform: scale(0.8);
    }

    /* Body */
    .modal-sm-mobile .modal-body[b-iiuao1mey4] {
        padding: 10px 12px;
    }

    /* Inputs */
    .modal-sm-mobile .form-control[b-iiuao1mey4],
    .modal-sm-mobile .form-select[b-iiuao1mey4] {
        padding: 4px 6px !important;
        height: 32px;
        font-size: 12px !important;
    }

    .modal-sm-mobile label[b-iiuao1mey4] {
        font-size: 12px;
        margin-bottom: 2px;
    }

    /* Image inside modal */
    .modal-sm-mobile img[b-iiuao1mey4] {
        width: 70px !important;
        height: 70px !important;
    }

    /* Footer */
    .modal-sm-mobile .modal-footer[b-iiuao1mey4] {
        padding: 6px 10px;
        gap: 5px;
    }

        .modal-sm-mobile .modal-footer .btn[b-iiuao1mey4] {
            padding: 4px 8px;
            font-size: 12px;
        }

    /* Table buttons */
    .table .btn[b-iiuao1mey4] {
        padding: 3px 6px !important;
        font-size: 11px !important;
    }

    .table th[b-iiuao1mey4], .table td[b-iiuao1mey4] {
        font-size: 12px !important;
        padding: 6px !important;
    }

    /* Top buttons (add / filter / …) */
    .btn[b-iiuao1mey4] {
        padding: 5px 8px !important;
        font-size: 12px !important;
    }

        .btn i[b-iiuao1mey4] {
            margin-inline-end: 2px;
            font-size: 14px;
        }

    /* Dropdown */
    .dropdown-menu .dropdown-item[b-iiuao1mey4] {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    /* Search input */
    input.form-control[b-iiuao1mey4] {
        padding: 4px 6px !important;
        height: 34px !important;
        font-size: 12px !important;
    }

    /* Extra mobile sizing */
    .img-table[b-iiuao1mey4] {
        width: 35px;
        height: 35px;
    }

    .loading-container[b-iiuao1mey4] {
        height: 150px;
    }

    .loading-logo[b-iiuao1mey4] {
        width: 60px;
    }
}
/* /Pages/Admin/ManageUserAccounts.razor.rz.scp.css */



/* Reduce table icons on medium/mobile */
@media (max-width: 600px) {
    .table th i.bi[b-62k6uzpoxb] {
        font-size: 0.75rem;
    }
}



/* =========================================
   LOADING OVERLAY
========================================= */
.overlay-loader[b-62k6uzpoxb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.loading-container[b-62k6uzpoxb] {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1e3a8a;
    text-align: center;
}

.loading-logo[b-62k6uzpoxb] {
    width: 70px;
    animation: pulse-b-62k6uzpoxb 1.4s infinite;
}

@keyframes pulse-b-62k6uzpoxb {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* =========================================
   ULTRA-SMALL PAGINATION (Mobile)
========================================= */
@media (max-width: 576px) {

    .pagination-sm-mobile .page-link[b-62k6uzpoxb] {
        padding: 1px 4px;
        font-size: 9px;
        line-height: 1;
        min-width: 18px;
    }

    .pagination-sm-mobile .page-item[b-62k6uzpoxb] {
        margin: 0 1px;
    }

    .pagination-sm-mobile[b-62k6uzpoxb] {
        gap: 1px;
    }

        .pagination-sm-mobile .page-item.active .page-link[b-62k6uzpoxb] {
            padding: 1px 4px;
            font-size: 9px;
        }
}

/* =========================================
   MODAL — GENERAL SMALL STYLE
========================================= */
.modal-sm-mobile .modal-content[b-62k6uzpoxb] {
    border-radius: 15px;
    padding: 10px;
}

.modal-sm-mobile .modal-header[b-62k6uzpoxb],
.modal-sm-mobile .modal-body[b-62k6uzpoxb],
.modal-sm-mobile .modal-footer[b-62k6uzpoxb] {
    padding: 8px 12px;
}

.modal-sm-mobile .form-control[b-62k6uzpoxb],
.modal-sm-mobile .form-select[b-62k6uzpoxb] {
    padding: 6px 10px;
    font-size: 14px;
}

.modal-sm-mobile label[b-62k6uzpoxb] {
    font-size: 13px;
    font-weight: 600;
}

.modal-sm-mobile .btn[b-62k6uzpoxb] {
    padding: 6px 12px;
    font-size: 14px;
}

/* =========================================
   MOBILE — ULTRA COMPACT (MAX 576PX)
========================================= */
@media (max-width: 576px) {

    /* Shrink modal */
    .modal-sm-mobile .modal-dialog[b-62k6uzpoxb] {
        max-width: 85% !important;
        margin: auto;
        transform: scale(0.90);
    }

    .modal-sm-mobile .modal-content[b-62k6uzpoxb] {
        border-radius: 12px;
    }

    .modal-sm-mobile .modal-header[b-62k6uzpoxb] {
        padding: 6px 10px;
    }

    .modal-sm-mobile .modal-title[b-62k6uzpoxb] {
        font-size: 14px;
    }

    .modal-sm-mobile .btn-close[b-62k6uzpoxb] {
        transform: scale(0.8);
    }

    /* Body */
    .modal-sm-mobile .modal-body[b-62k6uzpoxb] {
        padding: 10px 12px;
    }

    /* Inputs */
    .modal-sm-mobile .form-control[b-62k6uzpoxb],
    .modal-sm-mobile .form-select[b-62k6uzpoxb] {
        padding: 4px 6px !important;
        height: 32px;
        font-size: 12px !important;
    }

    .modal-sm-mobile label[b-62k6uzpoxb] {
        font-size: 12px;
        margin-bottom: 2px;
    }

    /* Image inside modal */
    .modal-sm-mobile img[b-62k6uzpoxb] {
        width: 70px !important;
        height: 70px !important;
    }

    /* Footer */
    .modal-sm-mobile .modal-footer[b-62k6uzpoxb] {
        padding: 6px 10px;
        gap: 5px;
    }

        .modal-sm-mobile .modal-footer .btn[b-62k6uzpoxb] {
            padding: 4px 8px;
            font-size: 12px;
        }

    /* Table buttons */
    .table .btn[b-62k6uzpoxb] {
        padding: 3px 6px !important;
        font-size: 11px !important;
    }

    .table th[b-62k6uzpoxb], .table td[b-62k6uzpoxb] {
        font-size: 12px !important;
        padding: 6px !important;
    }

    /* Top buttons (add / filter / …) */
    .btn[b-62k6uzpoxb] {
        padding: 5px 8px !important;
        font-size: 12px !important;
    }

        .btn i[b-62k6uzpoxb] {
            margin-inline-end: 2px;
            font-size: 14px;
        }

    /* Dropdown */
    .dropdown-menu .dropdown-item[b-62k6uzpoxb] {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    /* Search input */
    input.form-control[b-62k6uzpoxb] {
        padding: 4px 6px !important;
        height: 34px !important;
        font-size: 12px !important;
    }

   

    .loading-container[b-62k6uzpoxb] {
        height: 150px;
    }

    .loading-logo[b-62k6uzpoxb] {
        width: 60px;
    }
}
/* /Pages/Admin/OrdersDashboard.razor.rz.scp.css */

.summary-card:hover[b-ehsbdh7qe2] {
    background-color: #f5f9ff;
    transition: 0.2s;
}

.icon-box[b-ehsbdh7qe2] {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

/* /Pages/Admin/OrdersList.razor.rz.scp.css */

.table-highlight[b-n8o9cmsfjm] {
    animation: highlightFlash-b-n8o9cmsfjm 2s ease-in-out;
}

@keyframes highlightFlash-b-n8o9cmsfjm {
    0% {
        background-color: #fff3cd;
    }

    50% {
        background-color: #fff;
    }

    100% {
        background-color: #fff3cd;
    }
}


/* 🔥 Flash animation */
.table-highlight[b-n8o9cmsfjm] {
    animation: flashRow-b-n8o9cmsfjm 2s ease-out;
    background-color: #fff3cd !important; /* light yellow */
}

@keyframes flashRow-b-n8o9cmsfjm {
    0% {
        background-color: #ffe08a;
    }

    100% {
        background-color: transparent;
    }
}

/* 🔥 NEW badge */
.new-badge[b-n8o9cmsfjm] {
    display: inline-block;
    margin-right: 6px;
    padding: 2px 8px;
    font-size: 0.7rem;
    background-color: #ff5722;
    color: white;
    border-radius: 10px;
    font-weight: bold;
}
/* /Pages/DeliveryDashboard.razor.rz.scp.css */
/* ======= تحسين مظهر لوحة التحكم على الموبايل ======= */

/* تقليل الخطوط والمسافات للأجهزة الصغيرة */
@media (max-width: 768px) {
    body[b-2432b5zrmg] {
        font-size: 0.7rem;
    }

    h3[b-2432b5zrmg] {
        font-size: 0.9rem;
    }

    h5[b-2432b5zrmg] {
        font-size: 0.8rem;
    }

    .card[b-2432b5zrmg] {
        padding: 10px !important;
    }

    .form-control[b-2432b5zrmg] {
        font-size: 0.6rem;
        height: calc(1.5em + 0.5rem + 2px);
    }

    .btn[b-2432b5zrmg] {
        font-size: 0.6rem;
        padding: 0.35rem 0.6rem;
    }

    .table th[b-2432b5zrmg],
    .table td[b-2432b5zrmg] {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }

    .table img[b-2432b5zrmg] {
        width: 40px;
        height: 40px;
    }

    /* تصغير عرض حقل البحث */
    input.form-control[b-2432b5zrmg] {
        width: 150px !important;
    }

    /* جعل زر التوصيل أصغر */
    .btn-success[b-2432b5zrmg] {
        padding: 0.25rem 0.5rem;
        font-size: 0.6rem;
    }

    /* تقليل المسافات بين العناصر */
    .d-flex.gap-2[b-2432b5zrmg] {
        gap: 0.3rem !important;
        flex-wrap: wrap;
    }
}

/* ======= تحسين الطباعة ======= */
@media print {
    body *[b-2432b5zrmg] {
        visibility: hidden;
    }

    #printArea[b-2432b5zrmg], #printArea *[b-2432b5zrmg] {
        visibility: visible !important;
    }

    #printArea[b-2432b5zrmg] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        font-size: 12px;
    }

    .print-client[b-2432b5zrmg] {
        page-break-after: always;
        border: 1px solid #000;
        padding: 8px;
        margin-bottom: 10px;
    }

        .print-client h4[b-2432b5zrmg] {
            margin-bottom: 4px;
            font-size: 10px;
        }

        .print-client table th[b-2432b5zrmg],
        .print-client table td[b-2432b5zrmg] {
            border: 1px solid #000;
            padding: 2px 4px;
            text-align: right; /* للغة العربية */
            font-size: 10px;
        }

    /* إخفاء العناصر الغير مطبوعة */
    .btn[b-2432b5zrmg], nav[b-2432b5zrmg], header[b-2432b5zrmg], footer[b-2432b5zrmg], .card[b-2432b5zrmg], .d-flex[b-2432b5zrmg] {
        display: none !important;
    }
}

/* ======= تحسين المودال على الجوال ======= */
@media (max-width: 576px) {
    .modal-dialog[b-2432b5zrmg] {
        max-width: 95%;
        margin: 1.5rem auto;
    }

    .modal-body p[b-2432b5zrmg] {
        font-size: 0.6rem;
    }

    .modal-footer .btn[b-2432b5zrmg] {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */

/* --- Color Palette --- */
:root[b-3byxsbo6i0] {
    --primary-color: #1e3a8a;
    --primary-accent: #0ea5e9;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --cta-gradient: linear-gradient(135deg, var(--primary-accent), #38bdf8);
}

header.hero[b-3byxsbo6i0] {
    /* background: linear-gradient(135deg, #0a103a 0%, #0f1c5e 50%, #1e3a8a 100%);*/
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    /* أزرق داكن جدًا في الأعلى، يتحول إلى navy متوسط ثم أزرق داكن */
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* زيادة الظل لجعل النص بارزًا */
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    padding: 6rem 1rem;
}

/* --- Logo Styling --- */
.hero-logo-title[b-3byxsbo6i0] {
    gap: 0.05rem; /* تقليل المسافة بين الشعار والنص */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.logo-img[b-3byxsbo6i0] {
    height: 150px; /* حجم أصغر للوغو */
    width: auto;
    border-radius: 0; /* إزالة الحواف الدائرية */
    box-shadow: none; /* إزالة الظل */
    transition: none; /* إزالة تأثير التكبير */
}

.hero-title[b-3byxsbo6i0] {
    font-size: 2rem; /* تصغير حجم النص */
    font-weight: 700;
    line-height: 1.2;
}

/* Subtitle */
.hero-subtitle[b-3byxsbo6i0] {
    font-size: 1rem; /* تصغير النص */
    max-width: 600px;
    margin: 0 auto;
}

/* --- Responsive --- */
@@media (max-width: 768px) {
    .logo-img[b-3byxsbo6i0] {
        height: 80px; /* أصغر على الموبايل */
    }

    .hero-title[b-3byxsbo6i0] {
        font-size: 1.5rem;
    }

    .hero-subtitle[b-3byxsbo6i0] {
        font-size: 0.9rem;
    }

    .hero-logo-title[b-3byxsbo6i0] {
        gap: 0.3rem;
    }
}

/* --- Cards --- */
.card-custom[b-3byxsbo6i0] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: white;
    border-top: 4px solid var(--primary-accent);
}

    .card-custom:hover[b-3byxsbo6i0] {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.icon[b-3byxsbo6i0] {
    color: var(--primary-accent);
    font-size: 2.5rem;
}

/* --- Section Titles --- */
.section-title[b-3byxsbo6i0] {
    color: var(--primary-color);
    border-bottom: 4px solid var(--primary-accent);
    display: inline-block;
    padding-bottom: 0.4rem;
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 2rem;
}

/* CTA Section */
.cta-section[b-3byxsbo6i0] {
    /*background: linear-gradient(135deg, #0f1c5e 0%, #1e3a8a 100%);*/ /* تدرج أزرق داكن */
    background: linear-gradient(135deg, #080f1c, #101a2a, #2a3b55);
    color: rgba(255, 255, 255, 0.9); /* أبيض أخف قليلاً */
    border-radius: 2rem;
    padding: 4rem 2rem;
    margin-top: 4rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3); /* ظل خفيف للنص */
}

    .cta-section h2[b-3byxsbo6i0] {
        color: rgba(255, 255, 255, 0.95); /* جعل العنوان أخف قليلًا */
    }

    .cta-section p[b-3byxsbo6i0] {
        color: rgba(255, 255, 255, 0.85); /* الفقرة أخف من العنوان */
    }

footer[b-3byxsbo6i0] {
    background: #0f172a;
    padding: 2rem 0;
}

    footer p[b-3byxsbo6i0] {
        margin: 0;
        font-size: 0.9rem;
        color: #cbd5e1;
    }

/* --- Animations --- */
[data-aos][b-3byxsbo6i0] {
    opacity: 0;
    transition-property: transform, opacity;
}

    [data-aos].aos-animate[b-3byxsbo6i0] {
        opacity: 1;
    }

@media (max-width: 768px) {
    header .hero h1[b-3byxsbo6i0] {
        font-size: 2.25rem;
    }

    header.hero p[b-3byxsbo6i0] {
        font-size: 1rem;
    }
}



/* ===== FIX SPACING BETWEEN LOGO & TITLE ===== */
.hero-logo-title[b-3byxsbo6i0] {
    gap: 0.1rem !important;
}

.logo-img[b-3byxsbo6i0] {
    height: 110px !important; /* كان كبير جدًا 150px */
    margin-bottom: 0 !important;
}

.hero-title[b-3byxsbo6i0] {
    margin-left: 0.3rem !important; /* تقريب النص من اللوجو */
    margin-top: 0 !important; /* إزالة المسافة العلوية */
    margin-bottom: 0 !important; /* إزالة المسافة السفلية */
    line-height: 1 !important; /* تقليل المسافة داخل العنوان نفسه */
    display: flex; /* يجعل الحروف على مستوى واحد بدون فراغات */
    align-items: center;
}

/* موبايل */
@media (max-width: 768px) {
    .logo-img[b-3byxsbo6i0] {
        height: 70px !important;
    }

    .hero-title[b-3byxsbo6i0] {
        font-size: 1.3rem !important;
        margin-left: 0.2rem !important;
        line-height: 1 !important;
    }
}


/* ---------- LOADING ---------- */
.loading-container[b-3byxsbo6i0] {
    height: 75vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.loading-logo[b-3byxsbo6i0] {
    width: 130px;
    animation: pulse-b-3byxsbo6i0 1.5s infinite;
}

@keyframes pulse-b-3byxsbo6i0 {
    0% {
        transform: scale(1);
        opacity: .85
    }

    50% {
        transform: scale(1.06);
        opacity: 1
    }

    100% {
        transform: scale(1);
        opacity: .85
    }
}
/* /Pages/ProductionDashboard.razor.rz.scp.css */
@media (max-width: 768px) {
    body[b-4acxrqm2bv] {
        font-size: 0.6rem;
    }

    h3[b-4acxrqm2bv] {
        font-size: 0.9rem;
    }

    h5[b-4acxrqm2bv] {
        font-size: 0.8rem;
    }

    .form-control[b-4acxrqm2bv] {
        font-size: 0.85rem;
        height: calc(1.5em + 0.5rem + 2px);
    }

    /* ======= توحيد حجم الأزرار على الجوال ======= */
    .table td .btn[b-4acxrqm2bv],
    .table td .btn-sm[b-4acxrqm2bv] {
        min-width: 90px; /* الحد الأدنى للحجم */
        font-size: 0.75rem; /* حجم الخط ثابت */
        padding: 0.3rem 0.5rem; /* padding مناسب */
        white-space: nowrap; /* منع التفاف النص */
    }

    /* على الشاشات الصغيرة جدًا، يمكن جعل الأزرار ممتدة بالكامل داخل الخلية */
    @media (max-width: 576px) {
        .table td .btn[b-4acxrqm2bv],
        .table td .btn-sm[b-4acxrqm2bv] {
            width: 100%; /* كل زر يأخذ كامل عرض الخلية */
        }
    }

    /* جدول أصغر على الموبايل */
    table.table th[b-4acxrqm2bv],
    table.table td[b-4acxrqm2bv] {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }

    .row.mb-3[b-4acxrqm2bv] {
        margin-bottom: 0.5rem !important;
    }

    input.form-control[b-4acxrqm2bv] {
        width: 100% !important;
    }

    table.table-sm[b-4acxrqm2bv] {
        overflow-x: auto;
        display: block;
        width: 100%;
    }
}
/* /Pages/ProductionDashboardQty.razor.rz.scp.css */
@media (max-width: 768px) {
    body[b-jqhgpiqquk] {
        font-size: 0.6rem;
    }

    h3[b-jqhgpiqquk] {
        font-size: 0.9rem;
    }

    h5[b-jqhgpiqquk] {
        font-size: 0.8rem;
    }

    .form-control[b-jqhgpiqquk] {
        font-size: 0.85rem;
        height: calc(1.5em + 0.5rem + 2px);
    }

    /* ======= توحيد حجم الأزرار على الجوال ======= */
    .table td .btn[b-jqhgpiqquk],
    .table td .btn-sm[b-jqhgpiqquk] {
        min-width: 90px; /* الحد الأدنى للحجم */
        font-size: 0.75rem; /* حجم الخط ثابت */
        padding: 0.3rem 0.5rem; /* padding مناسب */
        white-space: nowrap; /* منع التفاف النص */
    }

    /* على الشاشات الصغيرة جدًا، يمكن جعل الأزرار ممتدة بالكامل داخل الخلية */
    @media (max-width: 576px) {
        .table td .btn[b-jqhgpiqquk],
        .table td .btn-sm[b-jqhgpiqquk] {
            width: 100%; /* كل زر يأخذ كامل عرض الخلية */
        }
    }

    /* جدول أصغر على الموبايل */
    table.table th[b-jqhgpiqquk],
    table.table td[b-jqhgpiqquk] {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }

    .row.mb-3[b-jqhgpiqquk] {
        margin-bottom: 0.5rem !important;
    }

    input.form-control[b-jqhgpiqquk] {
        width: 100% !important;
    }

    table.table-sm[b-jqhgpiqquk] {
        overflow-x: auto;
        display: block;
        width: 100%;
    }
}
