@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --np-teal: #69abb3;
    --np-teal-d: #3d7d87;
    --np-teal-deep: #1e4f57;
    --np-orange: #e67a4a;
    --np-ink: #142028;
    --np-muted: #7a9099;
    --np-border: #d6e6e9;
    --np-bg: #f5f9fa;
    --np-white: #fff;
    --sidebar-width-open: 220px;
    --sidebar-width-collapsed: 56px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: 'DM Sans', sans-serif; background: var(--np-bg); color: var(--np-ink); }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.np-shell { display: grid; grid-template-columns: var(--sidebar-width-open) 1fr; min-height: 100vh; }
.np-shell.sidebar-collapsed { grid-template-columns: var(--sidebar-width-collapsed) 1fr; }
.np-sidebar { background: var(--np-ink); color: #9fb8bf; display: flex; flex-direction: column; padding: 20px 10px; gap: 6px; }
.np-sidebar-logo { color: #fff; font-family: 'DM Serif Display', serif; font-size: 20px; padding: 6px; }
.np-sidebar-logo span { color: var(--np-teal); }
.np-sidebar-logo-icon { display: none; }
.np-sidebar.collapsed .np-sidebar-logo { display: none; }
.np-sidebar.collapsed .np-sidebar-logo-icon { display: block; }
.np-sidebar-section { text-transform: uppercase; font-size: 10px; margin-top: 8px; padding: 8px; color: #57717a; }
.np-nav-item { color: #9fb8bf; border-radius: 8px; padding: 10px 12px; font-size: 13px; }
.np-nav-item.active, .np-nav-item:hover { background: rgba(105,171,179,.16); color: var(--np-teal); }
.np-sidebar.collapsed .np-nav-label { display: none; }

.np-main { min-width: 0; position: relative; }
.top-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}
.top-row.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.np-topbar {
    background: var(--np-white);
    border-bottom: 1px solid var(--np-border);
    padding-top: 14px;
    padding-bottom: 14px;
    position: sticky;
    top: 0;
    z-index: 10200;
}

.np-topbar--lab {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 4.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 249, 250, 0.98) 100%);
    border-bottom: 1px solid rgba(105, 171, 179, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 32px rgba(30, 79, 87, 0.06);
}

.np-topbar-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(105, 171, 179, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105, 171, 179, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    pointer-events: none;
}

.np-topbar-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 4.25rem;
    padding: 0.65rem 0;
}

.np-topbar-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }

.np-topbar-titles {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.np-topbar-eyebrow {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--np-teal-d);
    opacity: 0.85;
}

.np-topbar--lab .np-page-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--np-ink);
    line-height: 1.15;
}

.np-topbar-menu {
    background: linear-gradient(145deg, var(--np-teal) 0%, var(--np-teal-d) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.np-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.sync-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 15rem;
    padding: 0.38rem 0.85rem 0.38rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--np-muted);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(214, 230, 233, 0.9);
    backdrop-filter: blur(8px);
}

.sync-indicator-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sync-indicator-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--np-teal);
    box-shadow: 0 0 0 3px rgba(105, 171, 179, 0.2);
}

.sync-indicator--ok .sync-indicator-dot {
    background: var(--np-teal);
}

.sync-indicator--pending {
    color: #a04a1a;
    border-color: rgba(230, 122, 74, 0.35);
    background: rgba(255, 243, 236, 0.9);
}

.sync-indicator--pending .sync-indicator-dot {
    background: var(--np-orange);
    box-shadow: 0 0 0 3px rgba(230, 122, 74, 0.25);
    animation: np-sync-pulse 2s ease-in-out infinite;
}

.sync-indicator.syncing {
    color: var(--np-teal-d);
    border-color: rgba(105, 171, 179, 0.45);
}

.sync-indicator-spin {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    animation: np-spin 0.9s linear infinite;
}

.sync-indicator-spin svg {
    width: 100%;
    height: 100%;
}

.np-sync-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem 0.4rem 0.45rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--np-orange) 0%, #c75a28 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(199, 90, 40, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.np-sync-action-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(199, 90, 40, 0.45);
}

.np-sync-action-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.np-sync-action-icon {
    display: inline-flex;
    width: 1.4rem;
    height: 1.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.np-sync-action-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.np-sync-action-badge {
    position: absolute;
    top: -0.35rem;
    right: -0.2rem;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #fff;
    color: #b71c1c;
    font-size: 0.6rem;
    font-weight: 800;
    line-height: 1.05rem;
    text-align: center;
    border: 2px solid var(--np-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

@keyframes np-sync-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.15); }
}

@keyframes np-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
    .np-sync-action-label { display: none; }
    .sync-indicator-text { max-width: 6.5rem; }
    .np-topbar--lab .np-page-title { font-size: 1.1rem; }
}
.np-toggle-btn { width: 30px; height: 30px; border: 1px solid var(--np-border); background: var(--np-bg); border-radius: 999px; }
.np-toggle-btn.rotated svg { transform: rotate(180deg); }

.menu-open-btn {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: var(--np-teal);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 57, 75, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.menu-open-btn:hover {
    background: var(--np-teal-d);
    transform: translateY(-1px);
}

.menu-open-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}
.np-page-title { font-weight: 600; }
.np-content { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.np-card { background: #fff; border: 1px solid var(--np-border); border-radius: 10px; padding: 16px; }
.np-metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.np-metric-label { color: var(--np-muted); font-size: 11px; text-transform: uppercase; margin-bottom: 6px; }
.np-metric-val { font-size: 28px; font-weight: 600; }
.np-metric-sub { font-size: 11px; color: var(--np-teal); margin-top: 3px; }
.np-metric-sub.warn { color: var(--np-orange); }
.np-metric-bar { height: 3px; background: var(--np-border); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.np-metric-bar-fill { height: 100%; background: var(--np-teal); border-radius: 2px; }
.np-table-wrap { background: #fff; border: 1px solid var(--np-border); border-radius: 10px; overflow: hidden; }
.np-table-header { padding: 14px 16px; border-bottom: 1px solid var(--np-border); display: flex; justify-content: space-between; align-items: center; }
.np-table { width: 100%; border-collapse: collapse; }
.np-table th, .np-table td { padding: 10px 14px; border-bottom: 1px solid #edf2f4; text-align: left; font-size: 13px; }
.np-table th { font-size: 11px; color: var(--np-muted); text-transform: uppercase; }
.np-dashboard-sections { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 14px; }
.np-plan-highlight { background: #e8f4f6; border-radius: 8px; padding: 14px; margin-bottom: 14px; }
.np-plan-highlight-name { font-size: 12px; font-weight: 600; color: var(--np-teal-d); }
.np-plan-highlight-price { font-size: 22px; font-weight: 600; color: var(--np-teal-d); margin: 4px 0; }
.np-plan-highlight-renew { font-size: 10px; color: var(--np-muted); }
.np-alert-item { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: #2a3d47; padding: 8px 0; border-top: 1px solid var(--np-border); }
.np-alert-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--np-orange); margin-top: 4px; flex-shrink: 0; }
.np-alerts-title { font-size: 11px; font-weight: 600; color: var(--np-ink); margin-bottom: 4px; }
.np-pill { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 10px; font-weight: 500; }
.np-pill.active { background: #e8f4f6; color: var(--np-teal-d); }
.np-pill.expired { background: #fcebeb; color: #a32d2d; }
.np-tests-tabbar {
    display: inline-flex;
    border: 1px solid var(--np-border);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 8px;
}
.np-tests-main-tabs {
    display: inline-flex;
    border: 1px solid var(--np-border);
    border-radius: 999px;
    overflow: hidden;
    margin: 4px 0 10px;
}
.np-tests-main-tab {
    border: none;
    background: transparent;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--np-muted);
}
.np-tests-main-tab.active {
    background: #142028;
    color: #fff;
}
.np-tests-tab {
    border: none;
    background: transparent;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--np-muted);
}
.np-tests-tab.active {
    background: var(--np-teal);
    color: #fff;
}
.np-tests-licence-meta {
    margin-top: 12px;
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--np-muted);
}
.np-tests-selected-list {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
}
.np-tests-selected-chip {
    background: #e8f4f6;
    color: var(--np-teal-d);
    border-radius: 999px;
    padding: 3px 8px;
    font-family: Consolas, monospace;
    font-size: 11px;
}
.np-bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}
.np-bundle-card {
    background: #fff;
    border: 1px solid var(--np-border);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.np-bundle-card:hover { border-color: var(--np-teal); }
.np-bundle-card.selected {
    border-color: var(--np-teal);
    box-shadow: 0 0 0 2px rgba(105,171,179,.26);
    background: #f3fafb;
}
.np-bundle-card.disabled { opacity: .55; cursor: not-allowed; }
.np-bundle-state { min-height: 22px; margin-bottom: 4px; }
.np-bundle-selected-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #1f7f54;
    background: #e8f7ef;
    border-radius: 999px;
    padding: 3px 8px;
}
.np-bundle-unselected-badge {
    display: inline-block;
    font-size: 10px;
    color: var(--np-muted);
    background: #f1f4f5;
    border-radius: 999px;
    padding: 3px 8px;
}
.np-bundle-name { font-size: 14px; font-weight: 600; color: var(--np-ink); margin-bottom: 4px; }
.np-bundle-id { font-size: 11px; color: var(--np-muted); margin-bottom: 8px; font-family: Consolas, monospace; }
.np-bundle-desc { font-size: 12px; color: #2a3d47; line-height: 1.5; }
.np-bundle-cats { margin-top: 8px; font-size: 10px; color: var(--np-muted); text-transform: uppercase; letter-spacing: .5px; }

.btn-primary, .btn-orange, .btn-outline { border-radius: 8px; padding: 10px 14px; font-size: 13px; border: 1px solid transparent; }
.btn-primary { background: var(--np-teal); color: #fff; }
.btn-orange { background: var(--np-orange); color: #fff; }
.btn-outline { background: transparent; border-color: var(--np-border); color: var(--np-ink); }
.btn-full { width: 100%; }

.np-login-shell {
    min-height: calc(100vh - 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(1200px, calc(100% - 64px));
    margin: 32px auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--np-border);
    box-shadow: 0 16px 42px rgba(20, 32, 40, 0.12);
}
.np-login-left {
    background: var(--np-teal-deep);
    color: #b9d5da;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.np-login-left-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(105,171,179,.18) 1px, transparent 1px);
    background-size: 28px 28px;
}
.np-login-left-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--np-orange);
}
.np-login-brand { position: relative; z-index: 1; }
.np-login-logo { font-family: 'DM Serif Display', serif; color: #fff; font-size: 28px; margin-bottom: 10px; }
.np-login-logo span { color: var(--np-teal); }
.np-login-tagline { font-size: 13px; color: #8fb8be; line-height: 1.65; max-width: 280px; }
.np-login-features { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.np-login-feat { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #b2d5da; }
.np-login-feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--np-orange); flex-shrink: 0; }

.np-login-right { background: #fff; display: flex; align-items: center; justify-content: center; padding: 48px; }
.np-login-form-box { width: 100%; max-width: 420px; position: relative; z-index: 2; }
.np-tabs { display: flex; border-bottom: 1.5px solid var(--np-border); margin-bottom: 28px; }
.np-tab {
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    color: var(--np-muted);
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    cursor: pointer;
}
.np-tab.active { color: var(--np-teal-d); border-bottom-color: var(--np-teal); }
.np-field { margin-bottom: 12px; }
.np-label { display: block; margin-bottom: 4px; text-transform: uppercase; font-size: 10px; color: #54666d; }
.np-input { width: 100%; border: 1px solid var(--np-border); border-radius: 8px; padding: 10px 12px; }
.np-validation-message { color: #cc3030; font-size: 11px; margin-top: 3px; }
.np-alert-inline { margin: 8px 0; background: #fcebeb; color: #cc3030; border-radius: 6px; padding: 8px 10px; font-size: 12px; }
.np-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-size: 11px;
    color: var(--np-muted);
}
.np-divider::before, .np-divider::after { content: ''; flex: 1; height: .5px; background: var(--np-border); }
.np-forgot { font-size: 11px; color: var(--np-teal-d); text-align: right; margin-top: 6px; cursor: pointer; }
.np-forgot:hover { text-decoration: underline; }

.np-register-shell { min-height: 100vh; background: var(--np-bg); }
.np-register-shell {
    width: min(1200px, calc(100% - 64px));
    margin: 32px auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--np-border);
    box-shadow: 0 16px 42px rgba(20, 32, 40, 0.12);
    background: var(--np-bg);
    min-height: calc(100vh - 64px);
}
.np-register-header {
    background: var(--np-teal-deep);
    padding: 20px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.np-register-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: #fff; }
.np-register-logo span { color: var(--np-teal); }
.np-stepper { display: flex; align-items: center; gap: 0; }
.np-step { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #8fb8be; padding: 6px 14px; }
.np-step.done { color: #b2d5da; }
.np-step.active { color: #fff; background: rgba(255,255,255,.1); border-radius: 6px; }
.np-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}
.np-step-sep { width: 24px; height: .5px; background: #2d5f6a; }

.np-register-body { max-width: 900px; margin: 0 auto; padding: 44px 24px; }
.np-register-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.np-form-title { font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.np-form-sub { font-size: 12px; color: var(--np-muted); margin-bottom: 28px; }
.np-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.np-step-footer { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; }
.np-recap-card { background: var(--np-white); border-radius: 10px; border: 1px solid var(--np-border); padding: 20px; height: fit-content; }
.np-recap-title { font-size: 10px; font-weight: 600; color: var(--np-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.np-recap-block { background: var(--np-bg); border-radius: 8px; padding: 12px 14px; margin-bottom: 10px; }
.np-recap-head { font-size: 10px; color: var(--np-muted); margin-bottom: 4px; }
.np-recap-val { font-size: 13px; font-weight: 500; color: var(--np-ink); }
.np-recap-empty { color: var(--np-muted); font-weight: 400; }
.np-recap-note { font-size: 11px; color: var(--np-muted); margin-top: 14px; line-height: 1.6; }
.np-plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.np-plan-card { border: 1px solid var(--np-border); border-radius: 10px; padding: 16px; cursor: pointer; background: #fff; }
.np-plan-card.selected { border-color: var(--np-teal); box-shadow: 0 0 0 2px rgba(105,171,179,.2); }
.np-plan-price { font-size: 24px; font-weight: 600; margin-top: 8px; color: var(--np-teal-d); }
.np-plans-grid-detail { gap: 16px; margin-bottom: 32px; }
.np-plan-card.popular { border-color: var(--np-teal); position: relative; }
.np-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--np-teal);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}
.np-plan-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.np-plan-name { font-size: 14px; font-weight: 600; color: var(--np-ink); margin-bottom: 4px; }
.np-plan-desc { font-size: 11px; color: var(--np-muted); margin-bottom: 16px; }
.np-plan-period { font-size: 11px; color: var(--np-muted); margin-top: 2px; }
.np-plan-features { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.np-plan-feat { font-size: 11px; color: #2a3d47; display: flex; align-items: center; gap: 6px; }
.np-plan-feat::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--np-teal); }
.np-billing-toggle { display: inline-flex; border: 1px solid var(--np-border); border-radius: 30px; overflow: hidden; }
.np-billing-opt { padding: 7px 22px; font-size: 12px; font-weight: 500; color: var(--np-muted); background: none; border: none; }
.np-billing-opt.active { background: var(--np-teal); color: #fff; }
.np-saving-badge { background: #fdf0ea; color: #b85830; font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 10px; margin-left: 10px; }

.np-state-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--np-bg); }
.np-state-card { background: #fff; border: 1px solid var(--np-border); border-radius: 10px; padding: 20px; width: min(92vw, 460px); text-align: center; }

.np-toast-wrap { position: fixed; right: 12px; bottom: 12px; display: flex; flex-direction: column; gap: 8px; z-index: 2000; }
.np-toast { padding: 10px 12px; border-radius: 8px; color: #fff; min-width: 240px; display: flex; justify-content: space-between; gap: 10px; }
.np-toast button { border: none; background: transparent; color: inherit; }
.np-toast-success { background: #2b9d5d; }
.np-toast-error { background: #c53b3b; }
.np-toast-info { background: #2e7a9f; }

@media (max-width: 980px) {
    .np-shell { grid-template-columns: 1fr; }
    .np-sidebar { flex-direction: row; overflow-x: auto; }
    .np-sidebar-section { display: none; }
    .np-login-shell {
        grid-template-columns: 1fr;
        width: 100%;
        min-height: 100vh;
        margin: 0;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }
    .np-login-left { display: none; }
    .np-register-header { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .np-stepper { width: 100%; overflow-x: auto; }
    .np-register-grid { grid-template-columns: 1fr; }
    .np-metric-grid { grid-template-columns: 1fr; }
    .np-dashboard-sections { grid-template-columns: 1fr; }
    .np-tests-tabbar { display: flex; width: 100%; border-radius: 10px; }
    .np-tests-tab { flex: 1; }
    .np-tests-main-tabs { display: flex; width: 100%; border-radius: 10px; }
    .np-tests-main-tab { flex: 1; }
    .np-plans-grid { grid-template-columns: 1fr; }
    .np-row-2 { grid-template-columns: 1fr; }
    .np-register-shell {
        width: 100%;
        min-height: 100vh;
        margin: 0;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }
}
