.nv-employee-shell {
    min-height: 100vh;
    background: var(--nv-bg);
    color: var(--nv-text);
}

.nv-employee-header {
    min-height: 74px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--nv-border);
    background: var(--nv-surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nv-employee-brand {
    display: flex;
    align-items: center;
    min-width: 170px;
}

.nv-employee-logo {
    width: 180px;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}

.nv-employee-logo-dark {
    display: none;
}

html[data-theme="dark"] .nv-employee-logo-light {
    display: none;
}

html[data-theme="dark"] .nv-employee-logo-dark {
    display: block;
}

.nv-employee-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nv-employee-language {
    margin: 0;
}

.nv-employee-toggle {
    width: 76px;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--nv-border);
    border-radius: 12px;
    background: var(--nv-surface-muted);
}

.nv-employee-toggle span,
.nv-employee-toggle a {
    width: 34px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    color: var(--nv-muted);
}

.nv-employee-toggle span.active,
.nv-employee-toggle a.active {
    background: var(--nv-surface);
    color: var(--nv-blue);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .14);
}

.nv-employee-theme {
    width: 38px;
    height: 38px;
    border: 1px solid var(--nv-border);
    border-radius: 12px;
    background: var(--nv-surface-muted);
    color: var(--nv-text);
}

.nv-employee-main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 56px;
}

.nv-employee-hero {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--nv-blue), #063b6c);
    color: white;
    margin-bottom: 24px;
}

.nv-employee-card {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 22px;
}

.nv-employee-assignment {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.nv-employee-assignment:hover {
    color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.nv-employee-question {
    background: var(--nv-surface);
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 16px;
}

.nv-employee-question.is-missing {
    border-color: var(--bs-danger);
}

.nv-question-number {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nv-surface-muted);
    color: var(--nv-blue);
    font-weight: 900;
}

.nv-employee-actions {
    position: sticky;
    bottom: 16px;
    z-index: 50;
    padding: 14px;
    border: 1px solid var(--nv-border);
    border-radius: 16px;
    background: color-mix(in srgb, var(--nv-surface) 94%, transparent);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.nv-employee-login-shell {
    min-height: 100vh;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-employee-login-card {
    width: min(470px, 100%);
    padding: 38px;
}

.nv-employee-login-logo {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto 22px;
}

.nv-employee-login-logo-dark {
    display: none;
}

html[data-theme="dark"] .nv-employee-login-logo-light {
    display: none;
}

html[data-theme="dark"] .nv-employee-login-logo-dark {
    display: block;
}

.nv-employee-login-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 22px 0;
}

@media (max-width: 700px) {
    .nv-employee-header {
        padding: 10px 14px;
    }

    .nv-employee-logo {
        width: 130px;
    }

    .nv-employee-main {
        width: min(100% - 20px, 1120px);
        padding-top: 20px;
    }

    .nv-employee-hero {
        padding: 22px;
    }

    .nv-employee-card,
    .nv-employee-question {
        padding: 18px;
    }

    .nv-employee-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .nv-employee-actions .d-flex {
        width: 100%;
    }

    .nv-employee-actions .btn {
        flex: 1;
    }
}


/* =========================================================
   EMPLOYEE DASHBOARD
   ========================================================= */

.nv-employee-dashboard {
    width: min(1180px, calc(100% - 32px));
}

.nv-employee-dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
    gap: 28px;
    align-items: center;
    overflow: hidden;
}

.nv-employee-hero-copy {
    min-width: 0;
}

.nv-employee-hero-message {
    max-width: 620px;
    font-size: .98rem;
    line-height: 1.55;
    opacity: .92;
}

.nv-employee-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nv-employee-summary-tile {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(6px);
}

.nv-employee-summary-tile.has-alert {
    background: rgba(255, 255, 255, .17);
}

.nv-employee-summary-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .14);
    font-size: 1.05rem;
}

.nv-employee-summary-number {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 900;
}

.nv-employee-summary-label {
    margin-top: 5px;
    font-size: .78rem;
    line-height: 1.2;
    opacity: .85;
}

.nv-employee-dashboard-section {
    margin-top: 34px;
}

.nv-employee-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 16px;
}

.nv-employee-section-kicker {
    margin-bottom: 4px;
    color: var(--nv-blue);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nv-employee-count-badge {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--nv-border);
    border-radius: 999px;
    background: var(--nv-surface);
    color: var(--nv-text);
    font-weight: 900;
}

.nv-employee-assignment-list {
    display: grid;
    gap: 14px;
}

.nv-employee-dashboard-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--nv-border);
    border-radius: 20px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
    transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
}

.nv-employee-dashboard-card:hover {
    color: inherit;
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--nv-blue) 38%, var(--nv-border));
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.nv-employee-dashboard-card.is-overdue {
    border-left: 4px solid var(--bs-danger);
}

.nv-employee-dashboard-card.is-due-soon {
    border-left: 4px solid var(--bs-warning);
}

.nv-employee-dashboard-card-icon,
.nv-employee-secondary-icon,
.nv-employee-history-icon,
.nv-employee-empty-icon {
    display: grid;
    place-items: center;
    background: var(--nv-blue-soft);
    color: var(--nv-blue);
}

.nv-employee-dashboard-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 1.25rem;
}

.nv-employee-dashboard-card-body {
    min-width: 0;
}

.nv-employee-type-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--nv-surface-muted);
    color: var(--nv-muted);
    font-size: .74rem;
    font-weight: 800;
}

.nv-employee-assignment-title {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 850;
    line-height: 1.25;
}

.nv-employee-assignment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 7px;
    color: var(--nv-muted);
    font-size: .88rem;
}

.nv-employee-assignment-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nv-employee-progress-wrap {
    max-width: 540px;
    margin-top: 17px;
}

.nv-employee-progress {
    height: 7px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--nv-surface-muted);
}

.nv-employee-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--nv-blue);
    font-size: .88rem;
    font-weight: 850;
}

.nv-employee-empty-state {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--nv-border);
    border-radius: 20px;
    background: var(--nv-surface);
}

.nv-employee-empty-large {
    min-height: 170px;
    justify-content: center;
    text-align: left;
}

.nv-employee-empty-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    font-size: 1.3rem;
}

.nv-employee-secondary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nv-employee-secondary-card {
    display: block;
    min-width: 0;
    padding: 19px;
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.nv-employee-secondary-card:hover {
    color: inherit;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
}

.nv-employee-secondary-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
}

.nv-employee-history-list {
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    background: var(--nv-surface);
    overflow: hidden;
}

.nv-employee-history-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--nv-border);
    color: inherit;
    text-decoration: none;
}

.nv-employee-history-row:last-child {
    border-bottom: 0;
}

.nv-employee-history-row:hover {
    color: inherit;
    background: var(--nv-surface-hover);
}

.nv-employee-history-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .nv-employee-dashboard-hero {
        grid-template-columns: 1fr;
    }

    .nv-employee-secondary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .nv-employee-dashboard {
        width: min(100% - 20px, 1180px);
    }

    .nv-employee-dashboard-hero {
        gap: 22px;
    }

    .nv-employee-summary-grid {
        gap: 8px;
    }

    .nv-employee-summary-tile {
        min-height: 78px;
        padding: 12px;
    }

    .nv-employee-summary-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .nv-employee-dashboard-section {
        margin-top: 28px;
    }

    .nv-employee-section-heading {
        align-items: start;
    }

    .nv-employee-dashboard-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .nv-employee-dashboard-card-icon {
        width: 44px;
        height: 44px;
    }

    .nv-employee-card-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 2px;
    }

    .nv-employee-assignment-meta {
        display: grid;
        gap: 6px;
    }

    .nv-employee-history-row {
        align-items: flex-start;
    }

    .nv-employee-history-row > .badge {
        display: none;
    }
}

@media (max-width: 440px) {
    .nv-employee-summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nv-employee-summary-number {
        font-size: 1.2rem;
    }

    .nv-employee-summary-label {
        font-size: .72rem;
    }

    .nv-employee-dashboard-card {
        grid-template-columns: 1fr;
    }

    .nv-employee-dashboard-card-icon,
    .nv-employee-card-action {
        grid-column: 1;
    }

    .nv-employee-empty-state {
        align-items: flex-start;
    }
}


/* =========================================================
   EMPLOYEE REVIEW / SKILLS FORMS
   ========================================================= */

.nv-employee-form-progress {
    position: relative;
    overflow: hidden;
}

.nv-employee-form-progress-bar {
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--nv-surface-muted);
}

.nv-employee-progress-complete {
    color: var(--bs-success);
    font-weight: 800;
    font-size: .9rem;
}

.nv-employee-form-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 14px;
    color: var(--nv-muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nv-employee-form-section-line {
    height: 1px;
    flex: 1;
    background: var(--nv-border);
}

.nv-employee-question {
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        transform .15s ease;
}

.nv-employee-question.is-complete {
    border-color:
        color-mix(
            in srgb,
            var(--bs-success) 26%,
            var(--nv-border)
        );
}

.nv-employee-question.needs-attention {
    border-color: var(--bs-danger);
    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--bs-danger) 12%,
            transparent
        );
}

.nv-employee-choice-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 460px;
}

.nv-employee-choice {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--nv-border);
    border-radius: 14px;
    background: var(--nv-surface);
    color: var(--nv-text);
    font-weight: 800;
    cursor: pointer;
    transition:
        border-color .12s ease,
        background .12s ease,
        color .12s ease,
        transform .12s ease;
}

.nv-employee-choice:hover,
.nv-employee-rating-choice:hover {
    border-color:
        color-mix(
            in srgb,
            var(--nv-blue) 48%,
            var(--nv-border)
        );
    transform: translateY(-1px);
}

.btn-check:checked + .nv-employee-choice,
.btn-check:checked + .nv-employee-rating-choice {
    border-color: var(--nv-blue);
    background: var(--nv-blue);
    color: white;
}

.nv-employee-rating-group {
    display: grid;
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    gap: 8px;
    max-width: 460px;
}

.nv-employee-rating-choice {
    min-height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--nv-border);
    border-radius: 14px;
    background: var(--nv-surface);
    color: var(--nv-text);
    cursor: pointer;
    font-weight: 900;
    font-size: 1rem;
    transition:
        border-color .12s ease,
        background .12s ease,
        color .12s ease,
        transform .12s ease;
}

.nv-employee-choice-group.is-invalid .nv-employee-choice,
.nv-employee-rating-group.is-invalid .nv-employee-rating-choice {
    border-color:
        color-mix(
            in srgb,
            var(--bs-danger) 65%,
            var(--nv-border)
        );
}

@media (max-width: 700px) {
    .nv-employee-choice-group,
    .nv-employee-rating-group {
        max-width: none;
    }

    .nv-employee-form-section-heading {
        margin-top: 24px;
    }
}

@media (max-width: 440px) {
    .nv-employee-rating-group {
        gap: 6px;
    }

    .nv-employee-rating-choice {
        min-height: 46px;
        border-radius: 12px;
    }
}


/* =========================================================
   EMPLOYEE DEADLINE REMINDERS
   ========================================================= */

.nv-employee-reminder-bell {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--nv-border);
    border-radius: 12px;
    background: var(--nv-surface-muted);
    color: var(--nv-text);
    text-decoration: none;
}

.nv-employee-reminder-bell:hover {
    color: var(--nv-blue);
    border-color:
        color-mix(
            in srgb,
            var(--nv-blue) 40%,
            var(--nv-border)
        );
}

.nv-employee-reminder-bell.has-reminders {
    color: var(--nv-blue);
}

.nv-employee-reminder-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--nv-surface);
    border-radius: 999px;
    background: var(--bs-danger);
    color: white;
    font-size: .65rem;
    font-weight: 900;
    line-height: 1;
}

.nv-employee-reminders-section {
    scroll-margin-top: 96px;
}

.nv-employee-reminder-list {
    display: grid;
    gap: 12px;
}

.nv-employee-reminder-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--nv-border);
    border-left-width: 4px;
    border-radius: 18px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.nv-employee-reminder-card:hover {
    color: inherit;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
}

.nv-employee-reminder-card.is-overdue {
    border-left-color: var(--bs-danger);
}

.nv-employee-reminder-card.is-upcoming {
    border-left-color: var(--bs-warning);
}

.nv-employee-reminder-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.05rem;
}

.nv-employee-reminder-card.is-overdue
.nv-employee-reminder-icon {
    background:
        color-mix(
            in srgb,
            var(--bs-danger) 12%,
            var(--nv-surface)
        );
    color: var(--bs-danger);
}

.nv-employee-reminder-card.is-upcoming
.nv-employee-reminder-icon {
    background:
        color-mix(
            in srgb,
            var(--bs-warning) 14%,
            var(--nv-surface)
        );
    color: #9a6700;
}

html[data-theme="dark"]
.nv-employee-reminder-card.is-upcoming
.nv-employee-reminder-icon {
    color: #f6c453;
}

.nv-employee-reminder-body {
    min-width: 0;
}

.nv-employee-reminder-title {
    line-height: 1.25;
}

.nv-employee-reminder-message {
    margin-top: 5px;
    font-size: .9rem;
}

.nv-employee-reminder-card.is-overdue
.nv-employee-reminder-message strong {
    color: var(--bs-danger);
}

.nv-employee-reminder-card.is-upcoming
.nv-employee-reminder-message strong {
    color: #9a6700;
}

html[data-theme="dark"]
.nv-employee-reminder-card.is-upcoming
.nv-employee-reminder-message strong {
    color: #f6c453;
}

@media (max-width: 700px) {
    .nv-employee-reminder-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
    }

    .nv-employee-reminder-card
    .nv-employee-card-action {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 440px) {
    .nv-employee-reminder-card {
        grid-template-columns: 1fr;
    }

    .nv-employee-reminder-icon,
    .nv-employee-reminder-card
    .nv-employee-card-action {
        grid-column: 1;
    }
}

/* =========================================================
   EMPLOYEE HUB
   ========================================================= */

.nv-employee-hub-nav {
    position: sticky;
    top: 74px;
    z-index: 90;
    border-bottom: 1px solid var(--nv-border);
    background: color-mix(in srgb, var(--nv-surface) 96%, transparent);
    backdrop-filter: blur(10px);
}

.nv-employee-hub-nav-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 8px 0;
}

.nv-employee-hub-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 12px;
    color: var(--nv-muted);
    text-decoration: none;
    white-space: nowrap;
    font-size: .86rem;
    font-weight: 800;
}

.nv-employee-hub-nav a:hover {
    background: var(--nv-surface-hover);
    color: var(--nv-blue);
}

.nv-employee-hub-nav a.active {
    background: var(--nv-blue-soft);
    color: var(--nv-blue);
}

.nv-employee-hub-page {
    width: min(1180px, calc(100% - 32px));
}

.nv-employee-page-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.nv-employee-page-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--nv-blue-soft);
    color: var(--nv-blue);
    font-size: 1.45rem;
}

.nv-employee-hub-section {
    margin-top: 28px;
}

.nv-employee-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nv-employee-hub-card {
    min-height: 126px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--nv-border);
    border-radius: 20px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.nv-employee-hub-card:hover {
    color: inherit;
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--nv-blue) 36%, var(--nv-border));
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.nv-employee-hub-card-featured {
    grid-column: span 2;
}

.nv-employee-hub-card-icon,
.nv-employee-link-icon,
.nv-employee-work-icon,
.nv-employee-info-icon {
    display: grid;
    place-items: center;
    background: var(--nv-blue-soft);
    color: var(--nv-blue);
}

.nv-employee-hub-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.15rem;
}

.nv-employee-hub-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 850;
}

.nv-employee-hub-card p {
    margin: 5px 0 0;
    color: var(--nv-muted);
    font-size: .85rem;
    line-height: 1.4;
}

.nv-employee-hub-card-arrow {
    color: var(--nv-muted);
}

.nv-employee-announcement-list,
.nv-employee-work-list {
    display: grid;
    gap: 14px;
}

.nv-employee-announcement-card {
    padding: 22px;
    border: 1px solid var(--nv-border);
    border-left: 4px solid var(--nv-blue);
    border-radius: 18px;
    background: var(--nv-surface);
}

.nv-employee-announcement-card.is-important {
    border-left-color: var(--bs-warning);
}

.nv-employee-announcement-card.is-urgent {
    border-left-color: var(--bs-danger);
}

.nv-employee-announcement-body,
.nv-employee-info-content {
    white-space: pre-wrap;
    line-height: 1.6;
}

.nv-employee-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.nv-employee-info-card {
    min-height: 170px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    background: var(--nv-surface);
}

.nv-employee-info-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
}

.nv-employee-link-section {
    margin-bottom: 30px;
}

.nv-employee-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.nv-employee-link-card {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--nv-border);
    border-radius: 16px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.nv-employee-link-card:hover {
    color: inherit;
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--nv-blue) 36%, var(--nv-border));
    box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}

.nv-employee-link-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
}

.nv-employee-document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nv-employee-document-card {
    min-height: 270px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--nv-border);
    border-radius: 22px;
    background: var(--nv-surface);
}

.nv-employee-document-card.is-missing {
    opacity: .72;
}

.nv-employee-document-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--nv-blue-soft);
    color: var(--nv-blue);
    font-size: 1.45rem;
}

.nv-employee-document-note {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid var(--nv-border);
    border-radius: 14px;
    color: var(--nv-muted);
    background: var(--nv-surface-muted);
    font-size: .88rem;
}

.nv-employee-work-section {
    margin-bottom: 34px;
}

.nv-employee-work-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    border: 1px solid var(--nv-border);
    border-left-width: 4px;
    border-radius: 17px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
}

.nv-employee-work-row:hover {
    color: inherit;
    border-color: color-mix(in srgb, var(--nv-blue) 36%, var(--nv-border));
}

.nv-employee-work-row.is-overdue {
    border-left-color: var(--bs-danger);
}

.nv-employee-work-row.is-due-soon {
    border-left-color: var(--bs-warning);
}

.nv-employee-work-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 13px;
}

@media (max-width: 900px) {
    .nv-employee-info-grid,
    .nv-employee-document-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .nv-employee-hub-nav-inner,
    .nv-employee-hub-page {
        width: min(100% - 20px, 1180px);
    }

    .nv-employee-hub-nav-inner {
        margin: 0 10px;
        width: calc(100% - 20px);
    }

    .nv-employee-hub-grid,
    .nv-employee-link-grid {
        grid-template-columns: 1fr;
    }

    .nv-employee-hub-card-featured {
        grid-column: auto;
    }

    .nv-employee-page-heading {
        align-items: flex-start;
    }

    .nv-employee-document-card {
        min-height: 0;
        padding: 20px;
    }
}

@media (max-width: 440px) {
    .nv-employee-page-heading {
        gap: 13px;
    }

    .nv-employee-page-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 15px;
    }

    .nv-employee-hub-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .nv-employee-hub-card-arrow {
        display: none;
    }

    .nv-employee-document-card {
        display: block;
    }

    .nv-employee-document-icon {
        margin-bottom: 16px;
    }
}

/* =========================================================
   EMPLOYEE DOCUMENT ACKNOWLEDGEMENTS
   ========================================================= */

.nv-employee-hub-card.has-attention {
    border-color:
        color-mix(
            in srgb,
            var(--bs-warning) 55%,
            var(--nv-border)
        );
}

.nv-employee-hub-card.has-attention
.nv-employee-hub-card-icon {
    background:
        color-mix(
            in srgb,
            var(--bs-warning) 16%,
            var(--nv-surface)
        );
    color: #9a6700;
}

html[data-theme="dark"]
.nv-employee-hub-card.has-attention
.nv-employee-hub-card-icon {
    color: #f6c453;
}

.nv-employee-hub-attention-text {
    color: #9a6700 !important;
    font-weight: 800;
}

html[data-theme="dark"]
.nv-employee-hub-attention-text {
    color: #f6c453 !important;
}

.nv-employee-document-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 7px 11px;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 850;
}

.nv-employee-document-status.is-acknowledged {
    background:
        color-mix(
            in srgb,
            var(--bs-success) 12%,
            var(--nv-surface)
        );
    color: var(--bs-success);
}

.nv-employee-document-status.is-pending {
    background:
        color-mix(
            in srgb,
            var(--bs-warning) 15%,
            var(--nv-surface)
        );
    color: #856404;
}

html[data-theme="dark"]
.nv-employee-document-status.is-pending {
    color: #f6c453;
}

.nv-employee-document-acknowledged {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid
        color-mix(
            in srgb,
            var(--bs-success) 32%,
            var(--nv-border)
        );
    border-radius: 14px;
    background:
        color-mix(
            in srgb,
            var(--bs-success) 6%,
            var(--nv-surface)
        );
}

.nv-employee-document-acknowledged > i {
    color: var(--bs-success);
    font-size: 1.05rem;
    margin-top: 2px;
}

.nv-employee-document-acknowledge-form {
    margin-top: 4px;
    padding: 14px;
    border: 1px solid var(--nv-border);
    border-radius: 14px;
    background: var(--nv-surface-muted);
}


/* =========================================================
   EMPLOYEE NOTIFICATION CENTRE
   ========================================================= */

.nv-employee-notification-bell {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--nv-border);
    border-radius: 12px;
    background: var(--nv-surface-muted);
    color: var(--nv-text);
    text-decoration: none;
    transition:
        color .15s ease,
        border-color .15s ease,
        background .15s ease;
}

.nv-employee-notification-bell:hover {
    color: var(--nv-blue);
    border-color:
        color-mix(
            in srgb,
            var(--nv-blue) 40%,
            var(--nv-border)
        );
}

.nv-employee-notification-bell.has-notifications {
    color: var(--nv-blue);
    background: var(--nv-blue-soft);
}

.nv-employee-notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--nv-surface);
    border-radius: 999px;
    background: var(--bs-danger);
    color: white;
    font-size: .65rem;
    font-weight: 900;
    line-height: 1;
}

.nv-employee-notification-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nv-employee-notification-summary-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--nv-border);
    border-radius: 18px;
    background: var(--nv-surface);
}

.nv-employee-notification-summary-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 1.1rem;
}

.nv-employee-notification-summary-icon.is-action {
    color: var(--bs-warning-text-emphasis, #856404);
    background:
        color-mix(
            in srgb,
            var(--bs-warning) 16%,
            var(--nv-surface)
        );
}

.nv-employee-notification-summary-icon.is-info {
    color: var(--nv-blue);
    background: var(--nv-blue-soft);
}

.nv-employee-notification-summary-value {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 900;
}

.nv-employee-notification-section {
    margin-bottom: 34px;
}

.nv-employee-notification-list {
    display: grid;
    gap: 12px;
}

.nv-employee-notification-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--nv-border);
    border-left-width: 4px;
    border-radius: 18px;
    background: var(--nv-surface);
    color: inherit;
    text-decoration: none;
    transition:
        transform .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
}

.nv-employee-notification-card:hover {
    color: inherit;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
}

.nv-employee-notification-card.is-danger {
    border-left-color: var(--bs-danger);
}

.nv-employee-notification-card.is-warning {
    border-left-color: var(--bs-warning);
}

.nv-employee-notification-card.is-info {
    border-left-color: var(--nv-blue);
}

.nv-employee-notification-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--nv-surface-muted);
    color: var(--nv-blue);
    font-size: 1.15rem;
}

.nv-employee-notification-card.is-danger
.nv-employee-notification-icon {
    color: var(--bs-danger);
    background:
        color-mix(
            in srgb,
            var(--bs-danger) 12%,
            var(--nv-surface)
        );
}

.nv-employee-notification-card.is-warning
.nv-employee-notification-icon {
    color: #9a7300;
    background:
        color-mix(
            in srgb,
            var(--bs-warning) 16%,
            var(--nv-surface)
        );
}

html[data-theme="dark"]
.nv-employee-notification-card.is-warning
.nv-employee-notification-icon {
    color: #f6c453;
}

.nv-employee-notification-body {
    min-width: 0;
}

.nv-employee-notification-eyebrow {
    margin-bottom: 3px;
    color: var(--nv-muted);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.nv-employee-notification-title {
    font-weight: 850;
    line-height: 1.25;
}

.nv-employee-notification-message {
    margin-top: 4px;
    color: var(--nv-muted);
    font-size: .86rem;
    line-height: 1.45;
}

[id^="announcement-"],
[id^="document-"] {
    scroll-margin-top: 150px;
}

@media (max-width: 700px) {
    .nv-employee-notification-summary {
        grid-template-columns: 1fr 1fr;
    }

    .nv-employee-notification-card {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: flex-start;
        padding: 16px;
    }

    .nv-employee-notification-card
    .nv-employee-card-action {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 440px) {
    .nv-employee-notification-summary {
        grid-template-columns: 1fr;
    }

    .nv-employee-notification-card {
        gap: 12px;
    }

    .nv-employee-notification-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 12px;
    }
}
