/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-wma5lak4qr] {
    position: relative;
    display: flex;
    flex-direction: column;
}
main[b-wma5lak4qr] { flex: 1; }

.sidebar[b-wma5lak4qr] {
    background-image: linear-gradient(180deg, #004D5A 0%, #006575 70%);
}

.top-row[b-wma5lak4qr] {
    background-color: #f0f9fa;
    border-bottom: 1px solid #C8E6E9;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-wma5lak4qr]  a, .top-row[b-wma5lak4qr]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}
.top-row[b-wma5lak4qr]  a:hover, .top-row[b-wma5lak4qr]  .btn-link:hover { text-decoration: underline; }
.top-row[b-wma5lak4qr]  a:first-child { overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 640.98px) {
    .top-row[b-wma5lak4qr] { justify-content: space-between; }
    .top-row[b-wma5lak4qr]  a, .top-row[b-wma5lak4qr]  .btn-link { margin-left: 0; }
}

@media (min-width: 641px) {
    .page[b-wma5lak4qr] { flex-direction: row; }
    .sidebar[b-wma5lak4qr] { width: 250px; height: 100vh; position: sticky; top: 0; }
    .top-row[b-wma5lak4qr] { position: sticky; top: 0; z-index: 1; }
    .top-row.auth[b-wma5lak4qr]  a:first-child { flex: 1; text-align: right; width: 0; }
    .top-row[b-wma5lak4qr], article[b-wma5lak4qr] { padding-left: 2rem !important; padding-right: 1.5rem !important; }
}

#blazor-error-ui[b-wma5lak4qr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss[b-wma5lak4qr] { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }

/* ===== HEADER ===== */
.site-header[b-wma5lak4qr] {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #005F6B 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header-top[b-wma5lak4qr] {
    background: var(--red-dark);
    padding: 6px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    font-family: 'Cairo', sans-serif;
}

.header-top .hotline[b-wma5lak4qr] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 13px;
}

.header-main[b-wma5lak4qr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
}

.brand[b-wma5lak4qr] { display: flex; align-items: center; gap: 16px; text-decoration: none; }

.brand-logo[b-wma5lak4qr] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 3px;
    background: white;
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255,213,79,0.3);
}

.brand-text[b-wma5lak4qr] { color: white; }
.brand-text .ar-name[b-wma5lak4qr] {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gold-light);
}
.brand-text .en-name[b-wma5lak4qr] {
    font-size: 11px;
    color: var(--gray-mid);
    letter-spacing: 0.5px;
    direction: ltr;
    display: block;
}

/* Hamburger toggle */
.nav-toggle[b-wma5lak4qr] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle .bar[b-wma5lak4qr] {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.25s;
}

nav[b-wma5lak4qr] {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav[b-wma5lak4qr]  a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
nav[b-wma5lak4qr]  a:hover { background: rgba(255,255,255,0.1); color: var(--gold-light); }
nav[b-wma5lak4qr]  a.active { background: var(--red); color: white; }

.btn-login[b-wma5lak4qr] {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 6px;
    padding: 7px 18px !important;
    text-decoration: none;
}
.btn-login:hover[b-wma5lak4qr] { background: var(--gold) !important; color: var(--dark) !important; }

/* Mobile nav */
@media (max-width: 768px) {
    .nav-toggle[b-wma5lak4qr] { display: flex; }
    .header-main[b-wma5lak4qr] { padding: 10px 16px; }
    nav[b-wma5lak4qr] {
        display: none;
        position: absolute;
        top: 100%;
        right: 0; left: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    nav.nav-open[b-wma5lak4qr] { display: flex; }
    nav[b-wma5lak4qr]  a { padding: 12px 16px; border-radius: 8px; }
}

/* ===== FOOTER ===== */
footer[b-wma5lak4qr] {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 40px 32px 20px;
    margin-top: 48px;
}

.footer-grid[b-wma5lak4qr] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-wrap[b-wma5lak4qr] { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img[b-wma5lak4qr] { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); background: white; object-fit: contain; }
.footer-brand .brand-name[b-wma5lak4qr] { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 14px; color: var(--gold-light); line-height: 1.3; }
.footer-brand p[b-wma5lak4qr] { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 280px; }

.footer-col h4[b-wma5lak4qr] {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}
.footer-col ul[b-wma5lak4qr] { list-style: none; }
.footer-col li[b-wma5lak4qr] { margin-bottom: 8px; }
.footer-col a[b-wma5lak4qr] { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover[b-wma5lak4qr] { color: var(--gold-light); }

.footer-bottom[b-wma5lak4qr] {
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== NOTIFICATION BANNER ===== */
.notify-bar[b-wma5lak4qr] {
    background: linear-gradient(135deg, rgba(0,151,167,0.95), rgba(0,131,143,0.95));
    color: white;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-family: 'Cairo', sans-serif;
}
.notify-bar .msg[b-wma5lak4qr] { display: flex; align-items: center; gap: 8px; }
.notify-close[b-wma5lak4qr] { cursor: pointer; opacity: 0.7; font-size: 18px; }
.notify-close:hover[b-wma5lak4qr] { opacity: 1; }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ===== شريط التنقل العلوي ===== */
.top-row[b-jcps4ok6li] {
    min-height: 3.5rem;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,77,90,0.06);
    border-bottom: 1px solid rgba(0,151,167,0.12);
    margin-bottom: 30px;
}

.logo-container[b-jcps4ok6li] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 !important;
}

.logo-text[b-jcps4ok6li] {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo-badge[b-jcps4ok6li] {
    background: var(--red);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,151,167,0.25);
}

/* ===== زر الهامبرغر (label مرئي + checkbox مخفي) ===== */

/* الـ checkbox مخفي تماماً — يتحكم في القائمة فقط عبر CSS */
.navbar-toggler[b-jcps4ok6li] {
    display: none;
}

/* الـ label هو الزر المرئي — يظهر على الموبايل فقط */
.navbar-toggler-label[b-jcps4ok6li] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(0,77,90,0.2);
    border-radius: 8px;
    padding: 6px;
    background: transparent;
    transition: background 0.2s;
}

.navbar-toggler-label span[b-jcps4ok6li] {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}

.navbar-toggler-label:hover[b-jcps4ok6li] { background: rgba(0,151,167,0.07); }

/* تحويل الهامبرغر إلى X عند الفتح */
.navbar-toggler:checked ~ * .navbar-toggler-label span:nth-child(1)[b-jcps4ok6li],
#nav-toggle:checked ~ * .navbar-toggler-label span:nth-child(1)[b-jcps4ok6li] { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ * .navbar-toggler-label span:nth-child(2)[b-jcps4ok6li] { opacity: 0; transform: scaleX(0); }
#nav-toggle:checked ~ * .navbar-toggler-label span:nth-child(3)[b-jcps4ok6li] { transform: translateY(-7px) rotate(-45deg); }

/* ===== أيقونات القائمة ===== */
.bi[b-jcps4ok6li] {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 12px;
    margin-right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.bi-house-door-fill-nav-menu[b-jcps4ok6li] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23004D5A' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-jcps4ok6li] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230097A7'%3E%3Cpath d='M8 6.5a.5.5 0 0 1 .5.5v1.5H10a.5.5 0 0 1 0 1H8.5V11a.5.5 0 0 1-1 0V9.5H6a.5.5 0 0 1 0-1h1.5V7a.5.5 0 0 1 .5-.5'/%3E%3Cpath d='M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z'/%3E%3C/svg%3E");
}

.bi-track-nav-menu[b-jcps4ok6li] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004D5A'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
}

/* ===== عناصر القائمة ===== */
.menu-list[b-jcps4ok6li] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0 16px;
}

.nav-item[b-jcps4ok6li] { font-size: 15px; padding: 0; }

.nav-item[b-jcps4ok6li]  .nav-link {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    border-radius: 10px;
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    height: auto;
    width: 100%;
    background: transparent;
    transition: all 0.25s ease;
}

.nav-item[b-jcps4ok6li]  .nav-link:hover {
    background: rgba(0,151,167,0.07);
    color: var(--dark);
}

.nav-item[b-jcps4ok6li]  .nav-link:hover .bi { transform: scale(1.08); }

.nav-item[b-jcps4ok6li]  .nav-link.active {
    background: rgba(0,151,167,0.08);
    color: var(--dark);
    font-weight: 700;
    border-right: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

/* ===== الموبايل ===== */
.nav-scrollable[b-jcps4ok6li] {
    display: none;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* المنطق الأساسي: checkbox مخفي يتحكم في القائمة */
.navbar-toggler:checked ~ .nav-scrollable[b-jcps4ok6li] { display: block; }

@media (max-width: 640px) {
    .navbar-toggler-label[b-jcps4ok6li] { display: flex; }
}

@media (min-width: 641px) {
    .navbar-toggler-label[b-jcps4ok6li] { display: none; }
    .nav-scrollable[b-jcps4ok6li] {
        display: block;
        height: calc(100vh - 8rem);
        overflow-y: auto;
    }
}


.navbar-toggler[b-jcps4ok6li] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-jcps4ok6li] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-jcps4ok6li] {
    font-size: 1.1rem;
}

.bi[b-jcps4ok6li] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-jcps4ok6li] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-jcps4ok6li] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-jcps4ok6li] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-jcps4ok6li] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-jcps4ok6li] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-jcps4ok6li] {
        padding-bottom: 1rem;
    }

    .nav-item[b-jcps4ok6li]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-jcps4ok6li]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-jcps4ok6li]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-jcps4ok6li] {
        display: none;
    }

    .collapse[b-jcps4ok6li] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-jcps4ok6li] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-0iwo67480f],
.components-reconnect-repeated-attempt-visible[b-0iwo67480f],
.components-reconnect-failed-visible[b-0iwo67480f],
.components-pause-visible[b-0iwo67480f],
.components-resume-failed-visible[b-0iwo67480f],
.components-rejoining-animation[b-0iwo67480f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-retrying[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-failed[b-0iwo67480f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-0iwo67480f] {
    display: block;
}


#components-reconnect-modal[b-0iwo67480f] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-0iwo67480f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-0iwo67480f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-0iwo67480f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-0iwo67480f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-0iwo67480f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-0iwo67480f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-0iwo67480f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-0iwo67480f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-0iwo67480f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-0iwo67480f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-0iwo67480f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-0iwo67480f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-0iwo67480f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-0iwo67480f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-0iwo67480f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-0iwo67480f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-0iwo67480f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-0iwo67480f {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Complaint.razor.rz.scp.css */
.main-wrap[b-qq76klsipq] { max-width: 1000px; margin: 40px auto; padding: 0 20px; }

.complaint-card[b-qq76klsipq] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.card-header[b-qq76klsipq] {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-header-icon[b-qq76klsipq] {
    width: 52px; height: 52px;
    background: rgba(0,151,167,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-header-text h3[b-qq76klsipq] {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.card-header-text p[b-qq76klsipq] { font-size: 13px; color: var(--gray-mid); }

.card-body[b-qq76klsipq] { padding: 32px; }

/* Steps navigator */
.steps-nav[b-qq76klsipq] {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
}
.steps-nav[b-qq76klsipq]::before {
    content: '';
    position: absolute;
    top: 20px; right: 40px; left: 40px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-dot[b-qq76klsipq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-circle[b-qq76klsipq] {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.step-dot.active .step-circle[b-qq76klsipq] {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 0 0 4px rgba(0,151,167,0.2);
}

.step-dot.done .step-circle[b-qq76klsipq] {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-label[b-qq76klsipq] {
    font-size: 11px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: var(--gray-text);
    text-align: center;
}
.step-dot.active .step-label[b-qq76klsipq] { color: var(--red); }
.step-dot.done .step-label[b-qq76klsipq] { color: var(--success); }

/* Form */
.form-section[b-qq76klsipq] { display: none; }
.form-section.active[b-qq76klsipq] { display: block; animation: fadeIn-b-qq76klsipq 0.3s ease; }

@keyframes fadeIn-b-qq76klsipq {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid[b-qq76klsipq] { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group[b-qq76klsipq] { display: flex; flex-direction: column; gap: 6px; }

.form-group label[b-qq76klsipq] {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.form-group input[b-qq76klsipq],
.form-group select[b-qq76klsipq],
.form-group textarea[b-qq76klsipq] {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus[b-qq76klsipq],
.form-group select:focus[b-qq76klsipq],
.form-group textarea:focus[b-qq76klsipq] {
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}

.form-group textarea[b-qq76klsipq] { resize: vertical; min-height: 100px; }

.hint[b-qq76klsipq] {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 4px;
}

/* Alert */
.alert[b-qq76klsipq] {
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 12px;
    font-size: 14px;
}
.alert-danger[b-qq76klsipq] {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

/* FR-9a: pre-submit review styled as a formal "paper form" - document header,
   gray field labels, bold near-black values, dashed field dividers. */
.review-box[b-qq76klsipq] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 22px 10px;
    margin-bottom: 24px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .06);
    position: relative;
}
.review-box[b-qq76klsipq]::before {
    content: "📄 نموذج بيانات البلاغ";
    display: block;
    margin: 0 -22px 14px;
    padding: 15px 22px;
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .3px;
    border-radius: 12px 12px 0 0;
}
.review-box p[b-qq76klsipq] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    margin: 0;
    padding: 12px 2px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 15px;
    font-weight: 700;      /* value: bold, near-black */
    color: #1a202c;
    text-align: left;
}
.review-box p:last-child[b-qq76klsipq] { border-bottom: none; }
.review-box strong[b-qq76klsipq] {
    flex-shrink: 0;
    font-weight: 600;      /* label: medium weight */
    color: #718096;        /* label: muted gray */
    font-size: 13px;
}

/* Free-text answers (problem description, address) are shown verbatim as a block under
   their own label, instead of being squeezed into the label/value flex row the short
   fields use - a long sentence there would collapse into an unreadable sliver. */
.review-box p.review-label[b-qq76klsipq] {
    border-bottom: none;
    padding-bottom: 0;
}
.review-box p.review-text[b-qq76klsipq] {
    display: block;
    text-align: right;
    padding-top: 6px;
    font-weight: 500;
    line-height: 1.8;
    color: #2d3748;
    white-space: pre-wrap;   /* keep the citizen's own line breaks */
    overflow-wrap: anywhere; /* long unbroken input must not widen the card */
}

/* Nav */
.form-nav[b-qq76klsipq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-next[b-qq76klsipq] {
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,151,167,0.3);
}
.btn-next:hover[b-qq76klsipq] { background: var(--red-dark); transform: translateY(-1px); }
.btn-next:disabled[b-qq76klsipq] { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-back[b-qq76klsipq] {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--gray-text);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-back:hover[b-qq76klsipq] { border-color: var(--dark); color: var(--dark); }

/* Success state */
.success-state[b-qq76klsipq] { text-align: center; padding: 48px 24px; }

.success-icon[b-qq76klsipq] {
    width: 80px; height: 80px;
    background: rgba(39,174,96,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    border: 2px solid rgba(39,174,96,0.3);
}

.complaint-num[b-qq76klsipq] {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 12px 24px;
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    margin: 16px 0;
    direction: ltr;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .form-grid[b-qq76klsipq] { grid-template-columns: 1fr; }
    .card-body[b-qq76klsipq] { padding: 20px; }
    .main-wrap[b-qq76klsipq] { padding: 0 12px; margin: 20px auto; }
}
/* /Components/Pages/GeneralComplaint.razor.rz.scp.css */
.main-wrap[b-r22wckx4he] { max-width: 1000px; margin: 40px auto; padding: 0 20px; }

.complaint-card[b-r22wckx4he] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

.card-header[b-r22wckx4he] {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-header-icon[b-r22wckx4he] {
    width: 52px; height: 52px;
    background: rgba(0,151,167,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-header-text h3[b-r22wckx4he] {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.card-header-text p[b-r22wckx4he] { font-size: 13px; color: var(--gray-mid); }

.card-body[b-r22wckx4he] { padding: 32px; }

/* Steps navigator */
.steps-nav[b-r22wckx4he] {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
}
.steps-nav[b-r22wckx4he]::before {
    content: '';
    position: absolute;
    top: 20px; right: 40px; left: 40px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-dot[b-r22wckx4he] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-circle[b-r22wckx4he] {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.step-dot.active .step-circle[b-r22wckx4he] {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 0 0 4px rgba(0,151,167,0.2);
}

.step-dot.done .step-circle[b-r22wckx4he] {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-label[b-r22wckx4he] {
    font-size: 11px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    color: var(--gray-text);
    text-align: center;
}
.step-dot.active .step-label[b-r22wckx4he] { color: var(--red); }
.step-dot.done .step-label[b-r22wckx4he] { color: var(--success); }

/* Form */
.form-section[b-r22wckx4he] { display: none; }
.form-section.active[b-r22wckx4he] { display: block; animation: fadeIn-b-r22wckx4he 0.3s ease; }

@keyframes fadeIn-b-r22wckx4he {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-grid[b-r22wckx4he] { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group[b-r22wckx4he] { display: flex; flex-direction: column; gap: 6px; }

.form-group label[b-r22wckx4he] {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.form-group input[b-r22wckx4he],
.form-group select[b-r22wckx4he],
.form-group textarea[b-r22wckx4he] {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus[b-r22wckx4he],
.form-group select:focus[b-r22wckx4he],
.form-group textarea:focus[b-r22wckx4he] {
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}

.form-group textarea[b-r22wckx4he] { resize: vertical; min-height: 100px; }

.hint[b-r22wckx4he] {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 4px;
}

/* Alert */
.alert[b-r22wckx4he] {
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 12px;
    font-size: 14px;
}
.alert-danger[b-r22wckx4he] {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

/* FR-9a: pre-submit review styled as a formal "paper form" - document header,
   gray field labels, bold near-black values, dashed field dividers. */
.review-box[b-r22wckx4he] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 22px 10px;
    margin-bottom: 24px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, .06);
    position: relative;
}
.review-box[b-r22wckx4he]::before {
    content: "📄 نموذج بيانات البلاغ العام";
    display: block;
    margin: 0 -22px 14px;
    padding: 15px 22px;
    background: linear-gradient(135deg, #2b6cb0, #3182ce);
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .3px;
    border-radius: 12px 12px 0 0;
}
.review-box p[b-r22wckx4he] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    margin: 0;
    padding: 12px 2px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    text-align: left;
}
.review-box p:last-child[b-r22wckx4he] { border-bottom: none; }
.review-box strong[b-r22wckx4he] {
    flex-shrink: 0;
    font-weight: 600;
    color: #718096;
    font-size: 13px;
}

/* Free-text answers (problem description, location) are shown verbatim as a block under
   their own label, instead of being squeezed into the label/value flex row the short
   fields use - a long sentence there would collapse into an unreadable sliver. */
.review-box p.review-label[b-r22wckx4he] {
    border-bottom: none;
    padding-bottom: 0;
}
.review-box p.review-text[b-r22wckx4he] {
    display: block;
    text-align: right;
    padding-top: 6px;
    font-weight: 500;
    line-height: 1.8;
    color: #2d3748;
    white-space: pre-wrap;   /* keep the citizen's own line breaks */
    overflow-wrap: anywhere; /* long unbroken input must not widen the card */
}

/* Nav */
.form-nav[b-r22wckx4he] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-next[b-r22wckx4he] {
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,151,167,0.3);
}
.btn-next:hover[b-r22wckx4he] { background: var(--red-dark); transform: translateY(-1px); }
.btn-next:disabled[b-r22wckx4he] { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-back[b-r22wckx4he] {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--gray-text);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-back:hover[b-r22wckx4he] { border-color: var(--dark); color: var(--dark); }

/* Success state */
.success-state[b-r22wckx4he] { text-align: center; padding: 48px 24px; }

.success-icon[b-r22wckx4he] {
    width: 80px; height: 80px;
    background: rgba(39,174,96,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    border: 2px solid rgba(39,174,96,0.3);
}

.complaint-num[b-r22wckx4he] {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 12px 24px;
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    margin: 16px 0;
    direction: ltr;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .form-grid[b-r22wckx4he] { grid-template-columns: 1fr; }
    .card-body[b-r22wckx4he] { padding: 20px; }
    .main-wrap[b-r22wckx4he] { padding: 0 12px; margin: 20px auto; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-lqdddefx6o] {
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 40%, #005F6B 100%);
    padding: 64px 32px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero[b-lqdddefx6o]::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,151,167,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero[b-lqdddefx6o]::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,213,79,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge[b-lqdddefx6o] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,151,167,0.2);
    border: 1px solid rgba(0,151,167,0.4);
    border-radius: 24px;
    padding: 6px 18px;
    color: var(--red-light);
    font-size: 12px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge .dot[b-lqdddefx6o] {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red-light);
    animation: pulse-b-lqdddefx6o 1.8s infinite;
}

@keyframes pulse-b-lqdddefx6o {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero h1[b-lqdddefx6o] {
    font-family: 'Cairo', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero h1 span[b-lqdddefx6o] { color: var(--gold-light); }
.hero p[b-lqdddefx6o] { color: var(--gray-mid); max-width: 600px; margin: 0 auto 40px; line-height: 1.8; font-size: 16px; }

.hero-cta[b-lqdddefx6o] { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary[b-lqdddefx6o] {
    background: var(--red);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,151,167,0.4);
}
.btn-primary:hover[b-lqdddefx6o] {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,151,167,0.5);
    color: white;
}

.btn-secondary[b-lqdddefx6o] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.btn-secondary:hover[b-lqdddefx6o] { border-color: var(--gold); color: var(--gold); background: rgba(255,213,79,0.1); }

/* Stats Bar */
.stats-bar[b-lqdddefx6o] {
    background: var(--red);
    padding: 20px 32px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat-item[b-lqdddefx6o] { text-align: center; color: white; }
.stat-item .num[b-lqdddefx6o] { font-family: 'Cairo', sans-serif; font-size: 28px; font-weight: 900; line-height: 1; }
.stat-item .label[b-lqdddefx6o] { font-size: 12px; opacity: 0.85; margin-top: 2px; }

/* Main wrap */
.main-wrap[b-lqdddefx6o] { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }

.section-header[b-lqdddefx6o] { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow[b-lqdddefx6o] {
    color: var(--red);
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.section-header h2[b-lqdddefx6o] { font-family: 'Cairo', sans-serif; font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-header p[b-lqdddefx6o] { color: var(--gray-text); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* Services Grid */
.services-grid[b-lqdddefx6o] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

.service-card[b-lqdddefx6o] {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.service-card[b-lqdddefx6o]::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.service-card:hover[b-lqdddefx6o] { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.service-card:hover[b-lqdddefx6o]::before { transform: scaleX(1); }

.service-icon[b-lqdddefx6o] {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: rgba(0,151,167,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: all 0.25s;
}
.service-card:hover .service-icon[b-lqdddefx6o] { background: var(--red); }
.service-card h3[b-lqdddefx6o] { font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card p[b-lqdddefx6o] { font-size: 13px; color: var(--gray-text); line-height: 1.7; }

@media (max-width: 768px) {
    .hero[b-lqdddefx6o] { padding: 40px 16px 56px; }
    .hero h1[b-lqdddefx6o] { font-size: 26px; }
    .services-grid[b-lqdddefx6o] { grid-template-columns: 1fr; }
    .stats-bar[b-lqdddefx6o] { gap: 24px; }
    .main-wrap[b-lqdddefx6o] { padding: 24px 16px; }
}
/* /Components/Pages/TrackComplaint.razor.rz.scp.css */
.main-wrap[b-4nbyzyydej] { max-width: 860px; margin: 40px auto; padding: 0 20px; }

.track-section[b-4nbyzyydej] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px;
}

.section-header[b-4nbyzyydej] { text-align: center; margin-bottom: 32px; }
.section-header h2[b-4nbyzyydej] {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.section-header p[b-4nbyzyydej] { color: var(--gray-text); font-size: 14px; line-height: 1.7; max-width: 480px; margin: 0 auto; }

.track-form[b-4nbyzyydej] {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.track-form input[b-4nbyzyydej] {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    outline: none;
    direction: ltr;
    transition: border-color 0.2s;
    color: var(--dark);
}
.track-form input:focus[b-4nbyzyydej] {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(0,151,167,0.12);
}

.btn-next[b-4nbyzyydej] {
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,151,167,0.3);
}
.btn-next:hover[b-4nbyzyydej] { background: var(--red-dark); transform: translateY(-1px); }
.btn-next:disabled[b-4nbyzyydej] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Complaint summary */
.complaint-summary[b-4nbyzyydej] {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid var(--border);
}
.complaint-summary div[b-4nbyzyydej] {
    font-size: 14px;
    color: var(--charcoal);
    flex: 1;
    min-width: 160px;
}
.complaint-summary strong[b-4nbyzyydej] { color: var(--dark); display: block; font-size: 11px; font-weight: 700; margin-bottom: 3px; color: var(--gray-text); }

/* Status Timeline */
.status-timeline[b-4nbyzyydej] { max-width: 640px; margin: 0 auto; }

.timeline-item[b-4nbyzyydej] {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    position: relative;
}

.timeline-item:not(:last-child)[b-4nbyzyydej]::after {
    content: '';
    position: absolute;
    top: 36px;
    right: 17px;
    width: 2px;
    height: calc(100% - 12px);
    background: var(--border);
}

.timeline-item.done:not(:last-child)[b-4nbyzyydej]::after { background: var(--success); }
.timeline-item.active:not(:last-child)[b-4nbyzyydej]::after {
    background: linear-gradient(to bottom, var(--gold), var(--border));
}

.timeline-icon[b-4nbyzyydej] {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    background: var(--gray-light);
    border: 2px solid var(--border);
    position: relative;
    z-index: 1;
}

.timeline-item.done .timeline-icon[b-4nbyzyydej] {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.timeline-item.active .timeline-icon[b-4nbyzyydej] {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    animation: pulse-b-4nbyzyydej 2s infinite;
}

@keyframes pulse-b-4nbyzyydej {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,213,79,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255,213,79,0); }
}

.timeline-content h4[b-4nbyzyydej] {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.timeline-content p[b-4nbyzyydej] { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* Alert */
.alert[b-4nbyzyydej] { border-radius: 8px; padding: 14px 16px; font-size: 14px; }
.alert-danger[b-4nbyzyydej] { background: #fff5f5; color: #c53030; border: 1px solid #feb2b2; }

/* Result banner - one fixed, prominent spot at the top of the results for the outcome of
   whatever the citizen just did, success or failure. */
.feedback-banner[b-4nbyzyydej] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.7;
    border: 1px solid;
    animation: feedback-in-b-4nbyzyydej 0.25s ease-out;
}
@keyframes feedback-in-b-4nbyzyydej {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}
.feedback-success[b-4nbyzyydej] { background: #f0fff4; border-color: #9ae6b4; color: #22543d; }
.feedback-error[b-4nbyzyydej]   { background: #fff5f5; border-color: #feb2b2; color: #c53030; }
.feedback-icon[b-4nbyzyydej] { font-size: 18px; line-height: 1.4; flex-shrink: 0; }
.feedback-text[b-4nbyzyydej] { flex: 1; font-weight: 600; }
.feedback-close[b-4nbyzyydej] {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.6;
    font-size: 14px;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
}
.feedback-close:hover[b-4nbyzyydej] { opacity: 1; }

/* Action picker */
.actions-section[b-4nbyzyydej] { margin-top: 28px; border-top: 1px solid var(--border); padding-top: 24px; }
.actions-title[b-4nbyzyydej] {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.actions-empty[b-4nbyzyydej] {
    background: var(--gray-light);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--gray-text);
    text-align: center;
}

.action-grid[b-4nbyzyydej] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}
.action-card[b-4nbyzyydej] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: right;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.action-card:hover[b-4nbyzyydej] {
    border-color: var(--red);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.action-icon[b-4nbyzyydej] { font-size: 22px; }
.action-title[b-4nbyzyydej] { font-size: 15px; font-weight: 700; color: var(--dark); }
.action-hint[b-4nbyzyydej] { font-size: 12px; font-weight: 500; color: var(--gray-text); line-height: 1.6; }

/* Selected action */
.action-panel[b-4nbyzyydej] {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}
.action-panel-head[b-4nbyzyydej] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.action-panel-title[b-4nbyzyydej] {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}
.action-panel-text[b-4nbyzyydej] { font-size: 14px; color: var(--charcoal); line-height: 1.7; margin-bottom: 12px; }
.action-panel textarea[b-4nbyzyydej] {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    outline: none;
    resize: vertical;
    margin-bottom: 12px;
    color: var(--dark);
}
.action-panel textarea:focus[b-4nbyzyydej] { border-color: var(--red); }

.btn-link[b-4nbyzyydej] {
    background: none;
    border: none;
    color: var(--gray-text);
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}
.btn-link:hover[b-4nbyzyydej] { color: var(--dark); }
.btn-link:disabled[b-4nbyzyydej] { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 768px) {
    .track-form[b-4nbyzyydej] { flex-direction: column; }
    .track-section[b-4nbyzyydej] { padding: 24px 20px; }
    .main-wrap[b-4nbyzyydej] { margin: 20px auto; padding: 0 12px; }
    .complaint-summary[b-4nbyzyydej] { flex-direction: column; gap: 10px; }
    .action-grid[b-4nbyzyydej] { grid-template-columns: 1fr; }
}
