/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* Split-screen auth: brand panel left, form right. Falls back to single column on mobile. */
.auth-page[b-ff3skhv0vi] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    background: #fff;
}

/* ─── Brand panel ─────────────────────────────────────────────────── */
.auth-brand-panel[b-ff3skhv0vi] {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #8b5cf6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.auth-brand-panel[b-ff3skhv0vi]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0, transparent 50%);
    pointer-events: none;
}
.auth-brand-inner[b-ff3skhv0vi] {
    max-width: 420px;
    position: relative;
}
/* White rounded plate that houses the dark NextStep logo so it stays readable on the purple gradient */
.auth-brand-logo-wrap[b-ff3skhv0vi] {
    display: inline-block;
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.auth-brand-logo[b-ff3skhv0vi] {
    height: 56px;
    width: auto;
    display: block;
}
.auth-brand-name[b-ff3skhv0vi] {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}
.auth-brand-tag[b-ff3skhv0vi] {
    font-size: 1.05rem;
    opacity: 0.85;
    margin: 0 0 2.5rem;
}
.auth-brand-points[b-ff3skhv0vi] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.auth-brand-points li[b-ff3skhv0vi] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.98rem;
    opacity: 0.95;
}
.auth-brand-points .material-icons[b-ff3skhv0vi] {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* ─── Form panel ─────────────────────────────────────────────────── */
.auth-form-panel[b-ff3skhv0vi] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #fafafa;
}
.auth-form-inner[b-ff3skhv0vi] {
    width: 100%;
    /* Tight to the field grid (110 label + 16 col-gap + 224 input = 350px) so
       align-self/flex-end lands EXACTLY at the input's right edge. */
    max-width: 350px;
}
.auth-title[b-ff3skhv0vi] {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: #18181b;
    letter-spacing: -0.02em;
}
.auth-sub[b-ff3skhv0vi] {
    font-size: 0.95rem;
    color: #71717a;
    margin: 0 0 2rem;
}
.auth-alert[b-ff3skhv0vi] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.auth-alert .material-icons[b-ff3skhv0vi] {
    font-size: 1.2rem;
}
.auth-form[b-ff3skhv0vi] {
    display: flex;
    flex-direction: column;
    gap: 12px;               /* 12px gap between input rows */
    margin-top: 1rem;
    width: 100%;             /* fill form-inner so flex-end children land at the edge */
}
/* Horizontal layout: label left, narrower input right (~30% slimmer than before) */
.auth-field[b-ff3skhv0vi] {
    display: grid;
    grid-template-columns: 110px 224px;
    column-gap: 1rem;
    row-gap: 0.35rem;
    align-items: center;
    margin-top: 12px;
}
.auth-field label[b-ff3skhv0vi] {
    font-size: 1.05rem;       /* bigger letters */
    font-weight: 600;
    color: #18181b;
    text-align: right;
}
.auth-field input[b-ff3skhv0vi] {
    height: 52px;             /* taller */
    padding: 0 1rem;
    border: 1px solid #d4d4d8;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100%;              /* fills the 320px grid track */
    box-sizing: border-box;
}
.auth-field input:focus[b-ff3skhv0vi] {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}
.auth-err[b-ff3skhv0vi] {
    color: #dc2626;
    font-size: 0.85rem;
    grid-column: 2 / -1;
}
/* "Запомни ме" — own row, right-aligned to land under the input column.
   Sits at least 20px below the last input. */
.auth-remember-row[b-ff3skhv0vi] {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.auth-remember[b-ff3skhv0vi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #3f3f46;
    cursor: pointer;
}
.auth-remember input[type="checkbox"][b-ff3skhv0vi] {
    width: 18px;
    height: 18px;
    accent-color: #4f46e5;
}
/* Submit row: full-width flex container so the button lands flush right at
   the same vertical line as the input column's right edge. */
.auth-submit-row[b-ff3skhv0vi] {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.auth-submit[b-ff3skhv0vi] {
    height: 52px;
    width: 220px;
    border: 0;
    border-radius: 10px;
    background: #4f46e5;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: background 0.15s, transform 0.05s;
}
.auth-submit:hover[b-ff3skhv0vi] { background: #4338ca; }
.auth-submit:active[b-ff3skhv0vi] { transform: translateY(1px); }
.auth-submit .material-icons[b-ff3skhv0vi] { font-size: 1.2rem; }

.auth-foot[b-ff3skhv0vi] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e4e4e7;
    color: #71717a;
    font-size: 0.85rem;
    text-align: center;
}

/* ─── OAuth picker (inside the form area) ────────────────────────── */
[b-ff3skhv0vi] .oauth-empty {
    /* hide entirely when no providers — no noisy yellow card */
    display: none;
}
[b-ff3skhv0vi] .oauth-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
[b-ff3skhv0vi] .oauth-btn {
    height: 44px;
    border: 1px solid #d4d4d8;
    border-radius: 8px;
    background: #fff;
    color: #18181b;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.15s, border-color 0.15s;
}
[b-ff3skhv0vi] .oauth-btn:hover { background: #f4f4f5; border-color: #a1a1aa; }
[b-ff3skhv0vi] .oauth-google:hover { border-color: #4285F4; }
[b-ff3skhv0vi] .oauth-microsoft:hover { border-color: #00A4EF; }
[b-ff3skhv0vi] .oauth-icon { display: inline-flex; align-items: center; }

/* ─── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .auth-page[b-ff3skhv0vi] { grid-template-columns: 1fr; }
    .auth-brand-panel[b-ff3skhv0vi] { padding: 2rem 1.5rem; min-height: 220px; }
    .auth-brand-name[b-ff3skhv0vi] { font-size: 1.7rem; }
    .auth-brand-tag[b-ff3skhv0vi] { margin-bottom: 1rem; }
    .auth-brand-points[b-ff3skhv0vi] { display: none; }
    .auth-form-panel[b-ff3skhv0vi] { padding: 2rem 1.5rem; }
}
/* /Components/Account/Shared/ExternalLoginPicker.razor.rz.scp.css */
.oauth-form[b-zndtfifev2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.oauth-btn[b-zndtfifev2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: white;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.oauth-btn:hover[b-zndtfifev2] {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.oauth-icon[b-zndtfifev2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.oauth-google:hover[b-zndtfifev2] { border-color: #4285F4; }
.oauth-microsoft:hover[b-zndtfifev2] { border-color: #00A4EF; }

.oauth-empty[b-zndtfifev2] {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-yvbnz2vije] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-yvbnz2vije] {
    flex: 1;
}

.sidebar[b-yvbnz2vije] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

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

    .top-row[b-yvbnz2vije]  a, .top-row[b-yvbnz2vije]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-yvbnz2vije]  a:hover, .top-row[b-yvbnz2vije]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-yvbnz2vije]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-yvbnz2vije] {
        justify-content: space-between;
    }

    .top-row[b-yvbnz2vije]  a, .top-row[b-yvbnz2vije]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-yvbnz2vije] {
        flex-direction: row;
    }

    .sidebar[b-yvbnz2vije] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yvbnz2vije] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-yvbnz2vije]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-yvbnz2vije], article[b-yvbnz2vije] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-yvbnz2vije] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-yvbnz2vije] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-smsmgs1w9b] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-smsmgs1w9b] {
    background-color: rgba(255, 255, 255, 0.5);
}

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

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

.bi[b-smsmgs1w9b] {
    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-smsmgs1w9b] {
    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-smsmgs1w9b] {
    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-smsmgs1w9b] {
    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");
}

.bi-lock-nav-menu[b-smsmgs1w9b] {
    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 d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-smsmgs1w9b] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-smsmgs1w9b] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-smsmgs1w9b] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-smsmgs1w9b] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

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

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

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

    .nav-item[b-smsmgs1w9b]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

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

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

.nav-scrollable[b-smsmgs1w9b] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-smsmgs1w9b] {
    display: block;
}

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

    .nav-scrollable[b-smsmgs1w9b] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ─────────── Layout root ─────────── */
.ntf-home[b-bzemxs3dbu] {
    margin: -1.5rem;
    background: #f5f7fa;
    min-height: calc(100vh - 56px);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─────────── Hero ─────────── */
.ntf-hero[b-bzemxs3dbu] {
    background: linear-gradient(135deg, #0f2855 0%, #1e3a8a 35%, #0b5cab 100%);
    color: white;
    padding: 4rem 2.5rem 5rem;
    position: relative;
    overflow: hidden;
}

.ntf-hero[b-bzemxs3dbu]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(80, 200, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ntf-hero-inner[b-bzemxs3dbu] {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ntf-hero-content[b-bzemxs3dbu] {
    max-width: 640px;
}

.ntf-hero-eyebrow[b-bzemxs3dbu] {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ntf-hero-title[b-bzemxs3dbu] {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: white;
}

.ntf-hero-title span[b-bzemxs3dbu] {
    background: linear-gradient(120deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntf-hero-sub[b-bzemxs3dbu] {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 2rem 0;
}

.ntf-hero-actions[b-bzemxs3dbu] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ntf-btn[b-bzemxs3dbu] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.ntf-btn .material-icons[b-bzemxs3dbu] {
    font-size: 1.1rem;
}

.ntf-btn-primary[b-bzemxs3dbu] {
    background: #0078d4;
    color: white;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.ntf-btn-primary:hover[b-bzemxs3dbu] {
    background: #106ebe;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
}

.ntf-btn-secondary[b-bzemxs3dbu] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.ntf-btn-secondary:hover[b-bzemxs3dbu] {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero visual mock-up cards */
.ntf-hero-visual[b-bzemxs3dbu] {
    position: relative;
    height: 320px;
}

.ntf-hero-card[b-bzemxs3dbu] {
    position: absolute;
    background: white;
    color: #1f2937;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.ntf-hero-card-1[b-bzemxs3dbu] {
    top: 20px;
    right: 60px;
    width: 360px;
    transform: rotate(-2deg);
}

.ntf-hero-card-2[b-bzemxs3dbu] {
    bottom: 30px;
    right: 200px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    transform: rotate(3deg);
}

.ntf-mini-chat[b-bzemxs3dbu] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ntf-mini-msg[b-bzemxs3dbu] {
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 75%;
}

.ntf-mini-user[b-bzemxs3dbu] {
    align-self: flex-end;
    background: #0078d4;
    color: white;
}

.ntf-mini-bot[b-bzemxs3dbu] {
    align-self: flex-start;
    background: #f3f4f6;
    color: #1f2937;
}

.ntf-bot-tag[b-bzemxs3dbu] {
    display: inline-block;
    background: linear-gradient(120deg, #60a5fa, #c084fc);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 4px;
    letter-spacing: 0.05em;
}

.ntf-mini-h[b-bzemxs3dbu] {
    font-weight: 600;
    font-size: 0.85rem;
}

.ntf-mini-p[b-bzemxs3dbu] {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ─────────── Sections ─────────── */
.ntf-section[b-bzemxs3dbu] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 0;
}

/* ─────────── Stat cards ─────────── */
.ntf-stats[b-bzemxs3dbu] {
    display: grid;
    /* Adapts: 6 cols за staff (има Активни/Решени/AI/Итни/Недоделени/Реотворени),
       4 cols за end-users (нема Недоделени/Реотворени). auto-fit + minmax ги тура
       сите во еден ред кога има простор; на потесни екрани wrap-нуваат природно. */
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding-top: 2rem;
}

.ntf-stat[b-bzemxs3dbu] {
    background: white;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.15s, box-shadow 0.15s;
}

.ntf-stat:hover[b-bzemxs3dbu] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ntf-stat-icon[b-bzemxs3dbu] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.ntf-stat-icon .material-icons[b-bzemxs3dbu] {
    color: white;
    font-size: 1.5rem;
}

.ntf-blue[b-bzemxs3dbu] { background: linear-gradient(135deg, #0078d4, #106ebe); }
.ntf-green[b-bzemxs3dbu] { background: linear-gradient(135deg, #10b981, #059669); }
.ntf-purple[b-bzemxs3dbu] { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.ntf-orange[b-bzemxs3dbu] { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ntf-red[b-bzemxs3dbu] { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.ntf-teal[b-bzemxs3dbu] { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.ntf-yellow[b-bzemxs3dbu] { background: linear-gradient(135deg, #eab308, #ca8a04); }

.ntf-stat-val[b-bzemxs3dbu] {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: #111827;
}

.ntf-stat-lbl[b-bzemxs3dbu] {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ─────────── Two column layout ─────────── */
.ntf-two-col[b-bzemxs3dbu] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.ntf-panel[b-bzemxs3dbu] {
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ntf-panel-head[b-bzemxs3dbu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.ntf-panel-head h3[b-bzemxs3dbu] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.ntf-link[b-bzemxs3dbu] {
    color: #0078d4;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.ntf-link:hover[b-bzemxs3dbu] {
    text-decoration: underline;
}

/* ─────────── Quick action grid ─────────── */
.ntf-actions-grid[b-bzemxs3dbu] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.25rem;
}

.ntf-action[b-bzemxs3dbu] {
    display: block;
    background: #f9fafb;
    padding: 1.25rem 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
}

.ntf-action:hover[b-bzemxs3dbu] {
    background: #eff6ff;
    border-color: #0078d4;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.1);
}

.ntf-action-icon[b-bzemxs3dbu] {
    color: #0078d4;
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem;
}

.ntf-action-title[b-bzemxs3dbu] {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.ntf-action-desc[b-bzemxs3dbu] {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ─────────── Recent activity ─────────── */
.ntf-activity[b-bzemxs3dbu] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ntf-activity-item[b-bzemxs3dbu] {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.1s;
}

.ntf-activity-item:hover[b-bzemxs3dbu] {
    background: #f9fafb;
}

.ntf-activity-item:last-child[b-bzemxs3dbu] {
    border-bottom: none;
}

.ntf-activity-status[b-bzemxs3dbu] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.ntf-st-new .ntf-activity-status[b-bzemxs3dbu], .ntf-activity-status.ntf-st-new[b-bzemxs3dbu] { background: #3b82f6; }
.ntf-st-open .ntf-activity-status[b-bzemxs3dbu], .ntf-activity-status.ntf-st-open[b-bzemxs3dbu] { background: #0078d4; }
.ntf-st-prog .ntf-activity-status[b-bzemxs3dbu], .ntf-activity-status.ntf-st-prog[b-bzemxs3dbu] { background: #f59e0b; }
.ntf-st-wait .ntf-activity-status[b-bzemxs3dbu], .ntf-activity-status.ntf-st-wait[b-bzemxs3dbu] { background: #9ca3af; }
.ntf-st-resolved .ntf-activity-status[b-bzemxs3dbu], .ntf-activity-status.ntf-st-resolved[b-bzemxs3dbu] { background: #10b981; }
.ntf-st-closed .ntf-activity-status[b-bzemxs3dbu], .ntf-activity-status.ntf-st-closed[b-bzemxs3dbu] { background: #6b7280; }

.ntf-activity-body[b-bzemxs3dbu] { flex: 1; min-width: 0; }

.ntf-activity-title[b-bzemxs3dbu] {
    font-size: 0.92rem;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ntf-activity-num[b-bzemxs3dbu] {
    color: #0078d4;
    font-weight: 600;
    margin-right: 0.5rem;
}

.ntf-activity-meta[b-bzemxs3dbu] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.375rem;
    font-size: 0.75rem;
}

.ntf-chip[b-bzemxs3dbu] {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.65rem;
}

.ntf-chip.ntf-st-new[b-bzemxs3dbu] { background: #dbeafe; color: #1e40af; }
.ntf-chip.ntf-st-open[b-bzemxs3dbu] { background: #cffafe; color: #155e75; }
.ntf-chip.ntf-st-prog[b-bzemxs3dbu] { background: #fef3c7; color: #92400e; }
.ntf-chip.ntf-st-wait[b-bzemxs3dbu] { background: #f3f4f6; color: #4b5563; }
.ntf-chip.ntf-st-resolved[b-bzemxs3dbu] { background: #d1fae5; color: #065f46; }
.ntf-chip.ntf-st-closed[b-bzemxs3dbu] { background: #e5e7eb; color: #374151; }

.ntf-pri-urgent[b-bzemxs3dbu] { background: #fee2e2; color: #991b1b; }
.ntf-pri-high[b-bzemxs3dbu] { background: #ffedd5; color: #9a3412; }
.ntf-pri-normal[b-bzemxs3dbu] { background: #dbeafe; color: #1e3a8a; }
.ntf-pri-low[b-bzemxs3dbu] { background: #f3f4f6; color: #4b5563; }

.ntf-time[b-bzemxs3dbu] {
    margin-left: auto;
    color: #9ca3af;
    font-size: 0.75rem;
}

.ntf-empty[b-bzemxs3dbu] {
    padding: 2rem;
    text-align: center;
    color: #9ca3af;
}

.ntf-empty .material-icons[b-bzemxs3dbu] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ─────────── Features (anonymous) ─────────── */
.ntf-features-head[b-bzemxs3dbu] {
    text-align: center;
    padding-top: 3rem;
}

.ntf-features-head h2[b-bzemxs3dbu] {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

.ntf-features-head p[b-bzemxs3dbu] {
    color: #6b7280;
    font-size: 1.1rem;
}

.ntf-features[b-bzemxs3dbu] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ntf-feature[b-bzemxs3dbu] {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}

.ntf-feature:hover[b-bzemxs3dbu] {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #0078d4;
}

.ntf-feat-icon[b-bzemxs3dbu] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ntf-feat-icon .material-icons[b-bzemxs3dbu] {
    color: white;
    font-size: 1.6rem;
}

.ntf-feature h4[b-bzemxs3dbu] {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.ntf-feature p[b-bzemxs3dbu] {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px) {
    .ntf-hero-inner[b-bzemxs3dbu] { grid-template-columns: 1fr; }
    .ntf-hero-visual[b-bzemxs3dbu] { display: none; }
    .ntf-stats[b-bzemxs3dbu] { grid-template-columns: repeat(2, 1fr); }
    .ntf-two-col[b-bzemxs3dbu] { grid-template-columns: 1fr; }
    .ntf-features[b-bzemxs3dbu] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .ntf-hero[b-bzemxs3dbu] { padding: 2.5rem 1.25rem 3rem; }
    .ntf-hero-title[b-bzemxs3dbu] { font-size: 2rem; }
    .ntf-section[b-bzemxs3dbu], .ntf-two-col[b-bzemxs3dbu], .ntf-features[b-bzemxs3dbu] { padding-left: 1.25rem; padding-right: 1.25rem; }
    .ntf-features[b-bzemxs3dbu] { grid-template-columns: 1fr; }
    .ntf-actions-grid[b-bzemxs3dbu] { grid-template-columns: 1fr; }
}

/* ─────────── Greeting (authenticated landing — replaces hero) ─────────── */
.ntf-greeting[b-bzemxs3dbu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #e4e4e7;
}
.ntf-greeting-title[b-bzemxs3dbu] {
    margin: 0 0 0.25rem;
    font-size: 1.65rem;
    font-weight: 700;
    color: #18181b;
}
.ntf-greeting-sub[b-bzemxs3dbu] {
    margin: 0;
    color: #71717a;
    font-size: 0.95rem;
}
.ntf-greeting-actions[b-bzemxs3dbu] {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
@media (max-width: 720px) {
    .ntf-greeting[b-bzemxs3dbu] {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1.25rem 1rem;
    }
}
/* /Components/Pages/MyTickets.razor.rz.scp.css */
/* Same look as Tickets.razor.css — clean white cards + polished grid */

[b-lo5oscrp4h] .rz-datatable {
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    overflow: hidden;
}
[b-lo5oscrp4h] .rz-datatable thead th {
    background: #fafafa !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #71717a;
    font-weight: 600;
    border-bottom: 1px solid #e4e4e7 !important;
}
[b-lo5oscrp4h] .rz-datatable tbody tr {
    transition: background 0.1s;
}
[b-lo5oscrp4h] .rz-datatable tbody tr:hover {
    background: #f9fafb !important;
}
[b-lo5oscrp4h] .rz-datatable tbody td {
    padding: 0.7rem 0.85rem !important;
    border-bottom: 1px solid #f4f4f5 !important;
}

[b-lo5oscrp4h] .tlist-tag {
    display: inline-block;
    background: #ede9fe;
    color: #4f46e5;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    margin-right: 0.25rem;
    font-weight: 500;
}

[b-lo5oscrp4h] .rz-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: none;
}
/* /Components/Pages/NewTicket.razor.rz.scp.css */
/* Shared ticket styles moved to /wwwroot/css/tickets.css (global) so they
   reach both NewTicket and TicketDetail without Blazor's per-component
   scope attribute breaking the cascade.
   Leave this file empty — placeholder for any future NewTicket-only tweaks. */
/* /Components/Pages/TicketDetail.razor.rz.scp.css */
/* Shared ticket styles moved to /wwwroot/css/tickets.css (global). Placeholder
   for any future TicketDetail-only tweaks. */
/* /Components/Pages/Tickets.razor.rz.scp.css */
/* Match NewTicket / TicketDetail design language: clean white cards with subtle borders,
   monospace ticket numbers, purple chip accents, modern data grid look. */

[b-9zwieut2rg] .rz-stack .rz-card,
[b-9zwieut2rg] .tk-stats-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

/* Stats card — number prominent */
[b-9zwieut2rg] .tk-stats-card .rz-text-caption {
    color: #71717a;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
[b-9zwieut2rg] .tk-stats-card .rz-h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #18181b;
    margin: 0.25rem 0 0;
    line-height: 1;
}

/* Filter row card */
[b-9zwieut2rg] .tk-filters {
    padding: 1rem 1.25rem !important;
}

/* DataGrid polish */
[b-9zwieut2rg] .rz-datatable {
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    overflow: hidden;
}
[b-9zwieut2rg] .rz-datatable thead th {
    background: #fafafa !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #71717a;
    font-weight: 600;
    border-bottom: 1px solid #e4e4e7 !important;
}
[b-9zwieut2rg] .rz-datatable tbody tr {
    transition: background 0.1s;
}
[b-9zwieut2rg] .rz-datatable tbody tr:hover {
    background: #f9fafb !important;
}
[b-9zwieut2rg] .rz-datatable tbody td {
    padding: 0.7rem 0.85rem !important;
    border-bottom: 1px solid #f4f4f5 !important;
}

/* Tag chip in list rows */
[b-9zwieut2rg] .tlist-tag {
    display: inline-block;
    background: #ede9fe;
    color: #4f46e5;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    margin-right: 0.25rem;
    font-weight: 500;
}

/* Spacing between page header and content */
[b-9zwieut2rg] .rz-text-h4 {
    margin-bottom: 0 !important;
}
