:root {
    --ars-bg: #081019;
    --ars-sidebar: #0a111a;
    --ars-surface: #0f1823;
    --ars-surface-2: #121e2b;
    --ars-surface-3: #172536;
    --ars-border: rgba(148, 163, 184, 0.14);
    --ars-border-strong: rgba(148, 163, 184, 0.22);
    --ars-text: #f8fafc;
    --ars-muted: #8ea0b5;
    --ars-muted-2: #60758b;
    --ars-primary: #6d5dfc;
    --ars-primary-hover: #7c6cff;
    --ars-cyan: #22d3ee;
    --ars-success: #34d399;
    --ars-warning: #fbbf24;
    --ars-danger: #fb7185;
    --ars-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
    --ars-radius: 18px;
    --ars-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--ars-bg);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 72% 5%, rgba(109, 93, 252, 0.10), transparent 27rem),
        radial-gradient(circle at 45% 84%, rgba(34, 211, 238, 0.06), transparent 30rem),
        var(--ars-bg);
    color: var(--ars-text);
    font-family: var(--ars-font);
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ars-app {
    min-height: 100vh;
}

.ars-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 30;
    width: 268px;
    display: flex;
    flex-direction: column;
    padding: 24px 18px 20px;
    background: rgba(8, 16, 25, 0.92);
    border-right: 1px solid var(--ars-border);
    backdrop-filter: blur(18px);
}

.ars-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 8px;
}

.ars-brand-mark {
    position: relative;
    width: 37px;
    height: 37px;
    border-radius: 12px;
    background: linear-gradient(145deg, #6d5dfc, #4338ca);
    box-shadow: 0 10px 25px rgba(109, 93, 252, 0.28);
    overflow: hidden;
}

.ars-brand-mark span {
    position: absolute;
    display: block;
    height: 5px;
    border-radius: 999px;
    background: #fff;
    transform: rotate(-35deg);
}

.ars-brand-mark span:nth-child(1) { width: 18px; left: 6px; top: 9px; opacity: 0.98; }
.ars-brand-mark span:nth-child(2) { width: 22px; left: 8px; top: 16px; opacity: 0.78; }
.ars-brand-mark span:nth-child(3) { width: 13px; left: 12px; top: 23px; opacity: 0.55; }

.ars-brand strong,
.ars-brand small {
    display: block;
}

.ars-brand strong {
    font-size: 16px;
    letter-spacing: -0.02em;
}

.ars-brand small {
    margin-top: 2px;
    color: var(--ars-muted-2);
    font-size: 11px;
}

.ars-community-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin: 26px 0 20px;
    padding: 11px;
    border: 1px solid var(--ars-border);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(23, 37, 54, 0.95), rgba(15, 24, 35, 0.88));
}

.ars-community-avatar,
.ars-admin-avatar,
.ars-person-avatar,
.ars-dept-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.ars-community-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(145deg, rgba(109, 93, 252, 0.24), rgba(34, 211, 238, 0.12));
    border: 1px solid rgba(124, 108, 255, 0.3);
    color: #c9c4ff;
    font-size: 12px;
}

.ars-community-copy {
    min-width: 0;
}

.ars-community-copy span,
.ars-community-copy strong {
    display: block;
}

.ars-community-copy span {
    color: var(--ars-muted-2);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.ars-community-copy strong {
    overflow: hidden;
    margin-top: 3px;
    color: #e5edf6;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ars-icon-button {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--ars-border);
    border-radius: 12px;
    background: rgba(15, 24, 35, 0.75);
    color: var(--ars-muted);
    cursor: pointer;
    transition: 160ms ease;
}

.ars-icon-button:hover {
    border-color: var(--ars-border-strong);
    background: var(--ars-surface-3);
    color: var(--ars-text);
}

.ars-small-icon {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
}

.ars-small-icon svg {
    width: 15px;
    height: 15px;
}

.ars-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ars-nav-label {
    padding: 8px 12px 7px;
    color: #4f6479;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ars-nav-label-spaced {
    margin-top: 18px;
}

.ars-nav-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #8da0b4;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 150ms ease;
}

.ars-nav-item svg {
    width: 18px;
    height: 18px;
}

.ars-nav-item span {
    flex: 1;
}

.ars-nav-item em {
    min-width: 25px;
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(109, 93, 252, 0.13);
    color: #a9a0ff;
    font-size: 10px;
    font-style: normal;
    text-align: center;
}

.ars-nav-item:hover {
    color: #dce7f2;
    background: rgba(148, 163, 184, 0.06);
}

.ars-nav-item.active {
    border-color: rgba(124, 108, 255, 0.22);
    background: linear-gradient(90deg, rgba(109, 93, 252, 0.16), rgba(109, 93, 252, 0.04));
    color: #eeeefe;
}

.ars-nav-item.active svg {
    color: #8b7fff;
}

.ars-sidebar-footer {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding: 14px 10px 0;
    border-top: 1px solid var(--ars-border);
}

.ars-admin-avatar {
    width: 36px;
    height: 36px;
    background: #142435;
    color: #b7c6d7;
    font-size: 11px;
}

.ars-sidebar-footer strong,
.ars-sidebar-footer span {
    display: block;
}

.ars-sidebar-footer strong {
    color: #d9e3ee;
    font-size: 11px;
}

.ars-sidebar-footer span {
    margin-top: 3px;
    color: var(--ars-muted-2);
    font-size: 10px;
}

.ars-shell {
    min-height: 100vh;
    margin-left: 268px;
}

.ars-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    padding: 0 38px;
    border-bottom: 1px solid var(--ars-border);
    background: rgba(8, 16, 25, 0.76);
    backdrop-filter: blur(18px);
}

.ars-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(520px, 44vw);
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--ars-border);
    border-radius: 12px;
    background: rgba(15, 24, 35, 0.78);
    color: var(--ars-muted-2);
    transition: 150ms ease;
}

.ars-search:focus-within {
    border-color: rgba(109, 93, 252, 0.48);
    box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.08);
}

.ars-search svg {
    width: 17px;
    height: 17px;
}

.ars-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ars-text);
    font-size: 12px;
}

.ars-search input::placeholder {
    color: #5f7285;
}

.ars-search kbd {
    padding: 2px 6px;
    border: 1px solid var(--ars-border-strong);
    border-radius: 6px;
    background: #111d29;
    color: #62778c;
    font-family: inherit;
    font-size: 10px;
    box-shadow: none;
}

.ars-top-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
}

.ars-notification {
    position: relative;
}

.ars-notification span {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ars-danger);
    box-shadow: 0 0 0 2px var(--ars-surface);
}

.ars-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 720;
    cursor: pointer;
    transition: 160ms ease;
}

.ars-btn svg {
    width: 16px;
    height: 16px;
}

.ars-btn-primary {
    background: linear-gradient(135deg, #7567ff, #5d4df2);
    box-shadow: 0 10px 25px rgba(109, 93, 252, 0.22);
    color: white;
}

.ars-btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #8174ff, #6858f6);
}

.ars-btn-secondary {
    border-color: var(--ars-border);
    background: rgba(15, 24, 35, 0.78);
    color: #c1cfdd;
}

.ars-btn-secondary:hover {
    border-color: var(--ars-border-strong);
    background: var(--ars-surface-3);
}

.ars-mobile-menu {
    display: none;
}

.ars-main {
    width: min(1540px, 100%);
    margin: 0 auto;
    padding: 38px 38px 60px;
}

.ars-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.ars-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #7d71ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ars-page-heading h1,
.ars-section-head h2,
.ars-panel-head h2 {
    margin: 0;
    letter-spacing: -0.035em;
}

.ars-page-heading h1 {
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.1;
}

.ars-page-heading p {
    max-width: 680px;
    margin: 9px 0 0;
    color: var(--ars-muted);
    font-size: 13px;
    line-height: 1.6;
}

.ars-heading-status {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 176px;
    padding: 10px 12px;
    border: 1px solid rgba(52, 211, 153, 0.14);
    border-radius: 13px;
    background: rgba(52, 211, 153, 0.045);
}

.ars-heading-status strong,
.ars-heading-status span {
    display: block;
}

.ars-heading-status strong {
    color: #c5f4e3;
    font-size: 10px;
}

.ars-heading-status span:not(.ars-live-dot) {
    margin-top: 2px;
    color: #67877c;
    font-size: 9px;
}

.ars-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ars-success);
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.09);
}

.ars-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.ars-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 122px;
    padding: 18px;
    border: 1px solid var(--ars-border);
    border-radius: var(--ars-radius);
    background: linear-gradient(145deg, rgba(18, 30, 43, 0.90), rgba(13, 22, 32, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.012);
}

.ars-stat-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
}

.ars-stat-icon svg {
    width: 21px;
    height: 21px;
}

.ars-tone-blue { background: rgba(59, 130, 246, 0.11); color: #60a5fa; }
.ars-tone-violet { background: rgba(139, 92, 246, 0.11); color: #a78bfa; }
.ars-tone-cyan { background: rgba(34, 211, 238, 0.10); color: #22d3ee; }
.ars-tone-amber { background: rgba(251, 191, 36, 0.11); color: #fbbf24; }

.ars-stat-copy {
    min-width: 0;
}

.ars-stat-copy span,
.ars-stat-copy strong,
.ars-stat-copy small {
    display: block;
}

.ars-stat-copy span {
    color: var(--ars-muted);
    font-size: 10px;
    font-weight: 650;
}

.ars-stat-copy strong {
    margin-top: 4px;
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.ars-stat-copy small {
    margin-top: 6px;
    color: #60758a;
    font-size: 9px;
}

.ars-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(310px, 0.75fr);
    gap: 26px;
    align-items: start;
}

.ars-section-head,
.ars-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ars-section-head {
    margin-bottom: 16px;
}

.ars-section-head h2,
.ars-panel-head h2 {
    font-size: 17px;
}

.ars-section-head p {
    margin: 5px 0 0;
    color: var(--ars-muted-2);
    font-size: 10px;
}

.ars-text-button,
.ars-panel-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #9b92ff;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
}

.ars-text-button svg,
.ars-panel-action svg {
    width: 14px;
    height: 14px;
}

.ars-department-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ars-department-card,
.ars-panel {
    border: 1px solid var(--ars-border);
    border-radius: var(--ars-radius);
    background: linear-gradient(145deg, rgba(18, 30, 43, 0.90), rgba(13, 22, 32, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.012);
}

.ars-department-card {
    padding: 18px;
    transition: 180ms ease;
}

.ars-department-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 108, 255, 0.25);
    box-shadow: var(--ars-shadow);
}

.ars-department-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.ars-department-identity {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
}

.ars-dept-avatar {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 10px;
}

.ars-dept-blue { background: rgba(59, 130, 246, 0.12); color: #7db2ff; }
.ars-dept-red { background: rgba(244, 63, 94, 0.11); color: #fb7185; }
.ars-dept-emerald { background: rgba(16, 185, 129, 0.11); color: #5ee2b2; }
.ars-dept-violet { background: rgba(139, 92, 246, 0.12); color: #b69afa; }
.ars-dept-amber { background: rgba(245, 158, 11, 0.11); color: #fbc35b; }
.ars-dept-cyan { background: rgba(6, 182, 212, 0.11); color: #58d6eb; }

.ars-department-identity h3 {
    overflow: hidden;
    margin: 0;
    color: #eaf0f7;
    font-size: 13px;
    font-weight: 720;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ars-department-identity span {
    display: block;
    margin-top: 4px;
    color: #61778c;
    font-size: 9px;
}

.ars-status,
.ars-stage,
.ars-panel-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.ars-status {
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ars-status-recruiting { background: rgba(52, 211, 153, 0.08); color: #61ddb4; border: 1px solid rgba(52, 211, 153, 0.13); }
.ars-status-closed { background: rgba(148, 163, 184, 0.07); color: #8293a5; border: 1px solid rgba(148, 163, 184, 0.12); }
.ars-status-internal { background: rgba(139, 92, 246, 0.08); color: #a998f5; border: 1px solid rgba(139, 92, 246, 0.13); }

.ars-department-card > p {
    min-height: 38px;
    margin: 16px 0 17px;
    color: #7890a6;
    font-size: 10px;
    line-height: 1.55;
}

.ars-dept-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.ars-dept-metrics > div {
    padding: 10px 11px;
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 11px;
    background: rgba(5, 12, 18, 0.30);
}

.ars-dept-metrics span,
.ars-dept-metrics strong {
    display: block;
}

.ars-dept-metrics span {
    color: #5f7489;
    font-size: 8px;
}

.ars-dept-metrics strong {
    margin-top: 4px;
    color: #cbd8e5;
    font-size: 12px;
}

.ars-capacity-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.ars-progress,
.ars-pipeline-track {
    overflow: hidden;
    background: rgba(148, 163, 184, 0.09);
}

.ars-progress {
    height: 5px;
    border-radius: 999px;
}

.ars-progress span,
.ars-pipeline-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6d5dfc, #22d3ee);
}

.ars-capacity-row small {
    color: #5c7287;
    font-size: 8px;
}

.ars-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.ars-card-button {
    flex: 1;
    min-height: 35px;
    padding: 0 12px;
    border: 1px solid rgba(109, 93, 252, 0.15);
    border-radius: 10px;
    background: rgba(109, 93, 252, 0.075);
    color: #a89fff;
    font-size: 9px;
    font-weight: 750;
    cursor: pointer;
    transition: 150ms ease;
}

.ars-card-button:hover {
    background: rgba(109, 93, 252, 0.13);
    color: #c1baff;
}

.ars-card-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
}

.ars-card-icon svg {
    width: 16px;
    height: 16px;
}

.ars-secondary-column {
    display: grid;
    gap: 14px;
}

.ars-panel {
    padding: 18px;
}

.ars-panel-head {
    align-items: flex-start;
    margin-bottom: 20px;
}

.ars-panel-head .ars-eyebrow {
    margin-bottom: 5px;
    font-size: 8px;
}

.ars-panel-count {
    min-height: 25px;
    padding: 0 8px;
    border: 1px solid var(--ars-border);
    border-radius: 999px;
    color: #71879b;
    font-size: 8px;
    font-weight: 700;
}

.ars-pipeline {
    display: grid;
    gap: 15px;
}

.ars-pipeline-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.ars-pipeline-label span {
    color: #7f94a8;
    font-size: 9px;
}

.ars-pipeline-label strong {
    color: #becbd8;
    font-size: 10px;
}

.ars-pipeline-track {
    height: 6px;
    border-radius: 999px;
}

.ars-panel-action {
    width: 100%;
    justify-content: center;
    min-height: 38px;
    margin-top: 20px;
    border: 1px solid rgba(109, 93, 252, 0.13);
    border-radius: 11px;
    background: rgba(109, 93, 252, 0.06);
}

.ars-activity-panel {
    padding-bottom: 8px;
}

.ars-activity-list {
    display: grid;
}

.ars-activity-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.ars-activity-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.ars-person-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(145deg, #17283a, #111d2a);
    border: 1px solid rgba(148, 163, 184, 0.11);
    color: #8aa1b7;
    font-size: 9px;
}

.ars-activity-copy {
    min-width: 0;
}

.ars-activity-copy strong,
.ars-activity-copy span,
.ars-activity-copy small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ars-activity-copy strong {
    color: #cbd8e4;
    font-size: 10px;
}

.ars-activity-copy span {
    margin-top: 3px;
    color: #60758a;
    font-size: 8px;
}

.ars-activity-copy small {
    margin-top: 3px;
    color: #485e72;
    font-size: 8px;
}

.ars-stage {
    min-height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ars-stage-interview { background: rgba(251, 191, 36, 0.08); color: #e8b94b; }
.ars-stage-review { background: rgba(59, 130, 246, 0.08); color: #69a3e8; }
.ars-stage-new { background: rgba(52, 211, 153, 0.08); color: #5fd1ad; }
.ars-stage-decision { background: rgba(139, 92, 246, 0.09); color: #9d8bea; }

.ars-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    max-width: min(380px, calc(100vw - 48px));
    padding: 13px 15px;
    border: 1px solid rgba(124, 108, 255, 0.28);
    border-radius: 12px;
    background: #111c29;
    box-shadow: var(--ars-shadow);
    color: #cbd8e4;
    font-size: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 180ms ease;
}

.ars-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.ars-overlay {
    display: none;
}

.ars-search-hidden {
    display: none !important;
}

@media (max-width: 1180px) {
    .ars-content-grid {
        grid-template-columns: 1fr;
    }

    .ars-secondary-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .ars-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ars-topbar {
        padding: 0 24px;
    }

    .ars-main {
        padding-inline: 24px;
    }

    .ars-btn-secondary span {
        display: none;
    }
}

@media (max-width: 820px) {
    body.ars-nav-open {
        overflow: hidden;
    }

    .ars-sidebar {
        transform: translateX(-100%);
        transition: transform 200ms ease;
        box-shadow: 18px 0 50px rgba(0, 0, 0, 0.35);
    }

    body.ars-nav-open .ars-sidebar {
        transform: translateX(0);
    }

    .ars-shell {
        margin-left: 0;
    }

    .ars-mobile-menu {
        display: inline-grid;
    }

    .ars-overlay {
        position: fixed;
        inset: 0;
        z-index: 25;
        background: rgba(1, 6, 12, 0.62);
    }

    body.ars-nav-open .ars-overlay {
        display: block;
    }

    .ars-search {
        width: min(430px, 100%);
    }
}

@media (max-width: 680px) {
    .ars-topbar {
        min-height: 66px;
        padding: 0 14px;
        gap: 8px;
    }

    .ars-search {
        flex: 1;
    }

    .ars-search kbd,
    .ars-btn-secondary,
    .ars-notification {
        display: none;
    }

    .ars-btn-primary {
        width: 40px;
        padding: 0;
    }

    .ars-btn-primary span {
        display: none;
    }

    .ars-main {
        padding: 28px 14px 42px;
    }

    .ars-page-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .ars-heading-status {
        display: none;
    }

    .ars-stat-grid,
    .ars-department-grid,
    .ars-secondary-column {
        grid-template-columns: 1fr;
    }

    .ars-stat-card {
        min-height: 105px;
    }

    .ars-section-head p {
        display: none;
    }

    .ars-text-button {
        font-size: 9px;
    }
}
