body.employer-hub-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 0;
    overflow: hidden;
    max-width: none;
    width: 100%;
    background-color: var(--global-palette8);
}

.employer-hub-page .employer-hub,
.employer-hub {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    margin: 0;
}

.employer-hub--with-header {
    min-height: 0;
}

.employer-hub__navbar {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.employer-hub__navbar-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.employer-hub__navbar-owl {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.employer-hub__layout {
    display: flex;
    flex: 1;
    min-height: 0;
}

.employer-hub__sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 64px;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    background-color: var(--global-palette9, #f5f5f5);
    border-right: 1px solid var(--outline-color, #e0e0e0);
    padding: 0 0 1.5rem 0;
}

.employer-hub__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.employer-hub__nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    color: var(--global-palette5, #666);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.15s, color 0.15s;
}

.employer-hub__nav-link:hover {
    background-color: var(--global-palette8, #eee);
    color: var(--global-palette3, #333);
}

.employer-hub__nav-link--active {
    background-color: var(--global-palette8, #eee);
    color: var(--global-palette2, #0066cc);
    font-weight: 500;
    border-left: 3px solid var(--global-palette2, #0066cc);
    padding-left: calc(1.25rem - 3px);
}

.employer-hub__nav-link .ph {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.employer-hub__main {
    flex: 1;
    overflow: auto;
    padding: 4rem 1.5rem;
    background-color: var(--global-palette8);
}

.employer-hub__main .employer-hub-page {
    max-width: var(--portal-narrow-content-width);
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .employer-hub__sidebar {
        width: 180px;
        padding: 0 0 1.5rem 0;
    }

    .employer-hub__nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .employer-hub__nav-link .ph {
        font-size: 1.1rem;
    }

    .employer-hub__main {
        padding: 2rem 1rem;
    }
}

.employer-hub__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-right: 0.5rem;
    background: none;
    border: none;
    color: var(--global-palette3);
    font-size: 1.75rem;
    cursor: pointer;
}

.employer-hub__mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.employer-hub__mobile-overlay--open {
    opacity: 1;
    visibility: visible;
}

.employer-hub__mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: var(--global-palette8);
    border-right: 1px solid var(--outline-color);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.employer-hub__mobile-drawer--open {
    transform: translateX(0);
}

.employer-hub__mobile-drawer__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--outline-color);
    flex-shrink: 0;
}

.employer-hub__mobile-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    color: var(--global-palette4);
    font-size: 1.5rem;
    cursor: pointer;
}

.employer-hub__mobile-drawer__close:hover {
    color: var(--global-palette2);
}

.employer-hub__mobile-drawer__title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--global-palette4);
}

.employer-hub__mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow-y: auto;
}

.employer-hub__mobile-drawer__nav .employer-hub__nav-link {
    border-radius: 0;
}

@media (max-width: 767px) {
    .employer-hub__navbar {
        border-bottom: 1px solid var(--outline-color);
    }

    .employer-hub__navbar .navbar__content {
        border-bottom: none;
    }

    .employer-hub__menu-toggle {
        display: flex;
        font-size: 2rem;
    }

    .employer-hub__navbar-owl {
        display: none !important;
    }

    .employer-hub__mobile-overlay,
    .employer-hub__mobile-drawer {
        display: flex;
    }

    .employer-hub__sidebar {
        display: none;
    }

    .employer-hub__main {
        padding: 1rem 1rem 3rem;
    }
}

.employer-hub-page .dashboard-header,
.employer-hub-page h1 {
    margin-bottom: 0.9rem;
}

.employer-hub-page__lead {
    color: var(--global-palette5, #666);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .employer-hub-page .employer-hub-home__platform-cards .dashboard-platform-cards__title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .employer-hub-page .portal-card {
        padding: 1.25rem;
    }

    .employer-hub-page .portal-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }

    .employer-hub-page__card {
        padding: 1rem;
    }

    .employer-hub-page__card h2 {
        font-size: 1rem;
    }
}

.employer-hub-home__profile-card {
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.employer-hub-home__platform-cards {
    width: 100%;
}

.employer-hub-home__platform-cards .dashboard-platform-cards__title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--global-palette5);
    margin-bottom: 2rem;
}

.employer-hub-page .portal-card__icon.icon-lms-files {
    background-color: var(--learning-hub-bg, var(--global-palette7));
}

.employer-hub-page .portal-card__icon.icon-workshops {
    background-color: var(--expert-videos-bg, var(--global-palette7));
}

.employer-hub-page .portal-card__icon.icon-essentials {
    background-color: var(--global-palette7);
}

.employer-hub-page .portal-card__icon.icon-plan-billing {
    background-color: var(--global-palette7);
}

.employer-hub-page .portal-card__icon.icon-users {
    background-color: var(--community-bg, var(--global-palette7));
}

.employer-hub-page__card {
    background: var(--global-palette9, #f5f5f5);
    border: 1px solid var(--outline-color, #e0e0e0);
    border-radius: 8px;
    padding: 1.5rem;
}

.employer-hub-page__card h2 {
    font-size: 1.1rem;
    margin: 0 0 1rem;
}

.employer-hub-page__card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.employer-hub-page__card li {
    margin-bottom: 0.5rem;
}

.employer-hub-page__card a {
    color: var(--global-palette2, #0066cc);
    text-decoration: none;
}

.employer-hub-page__card a:hover {
    text-decoration: underline;
}

.employer-hub-fade-enter-active,
.employer-hub-fade-leave-active {
    transition: opacity 0.15s ease;
}

.employer-hub-fade-enter-from,
.employer-hub-fade-leave-to {
    opacity: 0;
}

.employer-hub-page .employer-hub-lms-table-wrap .ph,
.employer-hub-page .employer-hub-lms-table-wrap i[class*="ph"] {
    font-size: 1.2rem;
}

.employer-hub-lms-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.employer-hub-lms-header-row > div {
    min-width: 0;
}

.employer-hub-lms-header-row .employer-hub-page__lead {
    margin-bottom: 0;
}

.employer-hub-lms-header-row .nowl-button {
    align-self: flex-start;
    flex-shrink: 0;
}

.employer-hub-lms-header-row__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-self: flex-start;
}

.employer-hub-installation-guide-modal .nowl_modal__header {
    margin-bottom: 1.25rem;
}

.employer-hub-installation-guide-modal .nowl_modal__content {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.employer-hub-ig-body {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.employer-hub-ig-loading,
.employer-hub-ig-empty {
    color: var(--global-palette5);
    margin: 0;
}

.employer-hub-ig-content-wrap {
    line-height: 1.6;
    color: var(--global-palette5);
}

.employer-hub-ig-content-wrap.blog-content h1,
.employer-hub-ig-content-wrap.blog-content h2,
.employer-hub-ig-content-wrap.blog-content h3,
.employer-hub-ig-content-wrap.blog-content h4 {
    color: var(--global-palette4);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.employer-hub-ig-content-wrap.blog-content h1:first-child,
.employer-hub-ig-content-wrap.blog-content h2:first-child,
.employer-hub-ig-content-wrap.blog-content h3:first-child,
.employer-hub-ig-content-wrap.blog-content h4:first-child {
    margin-top: 0;
}

.employer-hub-ig-content-wrap.blog-content h1 { font-size: 1.75rem; }
.employer-hub-ig-content-wrap.blog-content h2 { font-size: 1.4rem; }
.employer-hub-ig-content-wrap.blog-content h3 { font-size: 1.2rem; }
.employer-hub-ig-content-wrap.blog-content h4 { font-size: 1.1rem; }

.employer-hub-ig-content-wrap.blog-content p {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.employer-hub-ig-content-wrap.blog-content p:last-child {
    margin-bottom: 0;
}

.employer-hub-ig-content-wrap.blog-content ul,
.employer-hub-ig-content-wrap.blog-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.employer-hub-ig-content-wrap.blog-content li {
    margin-bottom: 0.35rem;
}

.employer-hub-ig-content-wrap.blog-content ul ul,
.employer-hub-ig-content-wrap.blog-content ol ol,
.employer-hub-ig-content-wrap.blog-content ul ol,
.employer-hub-ig-content-wrap.blog-content ol ul {
    margin-top: 0.35rem;
    margin-bottom: 0;
}

.employer-hub-ig-content-wrap.blog-content strong {
    font-weight: 600;
    color: var(--global-palette4);
}

.employer-hub-ig-content-wrap.blog-content blockquote {
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--global-palette2);
    color: var(--global-palette5);
    font-style: italic;
}

.employer-hub-ig-content-wrap.blog-content hr {
    border: none;
    border-top: 1px solid var(--outline-color);
    margin: 1.5rem 0;
}

.employer-hub-ig-content-wrap .employer-hub-ig-block {
    margin-bottom: 1rem;
}

.employer-hub-ig-content-wrap .employer-hub-ig-block:last-child {
    margin-bottom: 0;
}

.employer-hub-ig-content-wrap .employer-hub-ig-heading {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.1rem;
}

.employer-hub-ig-content-wrap .employer-hub-ig-heading:first-child {
    margin-top: 0;
}

.employer-hub-ig-content-wrap .employer-hub-ig-content {
    margin-bottom: 0.75rem;
}

.employer-hub-ig-content-wrap .employer-hub-ig-content p {
    margin: 0 0 0.5rem;
}

.employer-hub-ig-content-wrap .employer-hub-ig-content p:last-child {
    margin-bottom: 0;
}

.employer-hub-ig-content-wrap .employer-hub-ig-image {
    margin: 1rem 0;
}

.employer-hub-ig-content-wrap .employer-hub-ig-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.employer-hub-ig-content-wrap .employer-hub-ig-image figcaption {
    font-size: 0.9rem;
    color: var(--global-palette5);
    margin-top: 0.35rem;
}

.employer-hub-lms-modal .nowl_modal__content {
    width: 600px;
}

.employer-hub-lms-modal .nowl_upload_dropzone {
    min-height: 160px;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .employer-hub-lms-modal .nowl_modal__content {
        width: 100%;
        max-width: calc(100vw - 2rem);
        margin: 0 1rem;
        padding: 16px;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone {
        min-height: 140px;
        padding: 16px;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__icon {
        font-size: 2rem;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__content {
        gap: 10px;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__content .nowl-button {
        min-height: 44px;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__text--desktop {
        display: none;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__text--mobile {
        display: block;
        font-size: 0.9rem;
        text-align: center;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__filename {
        font-size: 0.85rem;
        word-break: break-word;
        text-align: center;
        padding: 0 0.5rem;
    }

    .employer-hub-lms-modal .nowl_upload_dropzone__note {
        font-size: 0.75rem;
        text-align: center;
    }

    .employer-hub-lms-modal .nowl_modal__actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .employer-hub-lms-modal .nowl_modal__actions .nowl_modal__button,
    .employer-hub-lms-modal .nowl_modal__actions .nowl-button--outline {
        min-height: 44px;
        flex: 1 1 auto;
        min-width: 120px;
    }
}

.employer-hub-lms-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.employer-hub-lms-cell-skeleton {
    display: inline-block;
    height: 1em;
    background: linear-gradient(
        90deg,
        var(--global-palette8, #eee) 0%,
        var(--global-palette7, #e8e8e8) 50%,
        var(--global-palette8, #eee) 100%
    );
    background-size: 200% 100%;
    animation: workshop-card-shimmer 3s ease-in-out infinite;
    border-radius: 4px;
    vertical-align: middle;
}

.employer-hub-lms-cell-skeleton--wide {
    width: 85%;
}

.employer-hub-lms-cell-skeleton--medium {
    width: 70%;
}

.employer-hub-lms-cell-skeleton--short {
    width: 50%;
}

.employer-hub-lms-actions--skeleton {
    gap: 0.5rem;
}

.employer-hub-lms-btn-skeleton {
    display: inline-block;
    width: 4rem;
    height: 2rem;
    background: linear-gradient(
        90deg,
        var(--global-palette8, #eee) 0%,
        var(--global-palette7, #e8e8e8) 50%,
        var(--global-palette8, #eee) 100%
    );
    background-size: 200% 100%;
    animation: workshop-card-shimmer 3s ease-in-out infinite;
    border-radius: 4px;
}

.employer-hub-lms-row--skeleton td {
    pointer-events: none;
}

.employer-hub-skeleton {
    display: block;
    background: var(--global-palette8, #eee);
    border-radius: 4px;
}

.employer-hub-skeleton--title {
    height: 1.25rem;
    width: 8rem;
}

.employer-hub-skeleton--section {
    height: 1.25rem;
    width: 10rem;
    margin-bottom: 1rem;
}

.employer-hub-skeleton--short {
    width: 5rem;
}

.employer-hub-skeleton--text {
    height: 1em;
    width: 100%;
    margin-bottom: 0.5rem;
}

.employer-hub-skeleton--wide {
    width: 90%;
}

.employer-hub-skeleton--dd {
    display: block;
    height: 1em;
    width: 70%;
    margin-bottom: 0.6rem;
}

.employer-hub-skeleton--btn {
    display: inline-block;
    width: 8rem;
    height: 2rem;
    vertical-align: middle;
}

.employer-hub-essentials__section--skeleton {
    pointer-events: none;
}

.employer-hub-essentials__actions--skeleton {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.employer-hub-billing-card--skeleton .nowl-card__header,
.employer-hub-billing-card--skeleton .nowl-card__body {
    pointer-events: none;
}

.employer-hub-billing-skeleton-dl {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.employer-hub-billing-card__actions--skeleton {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.employer-hub-billing-invoices--skeleton tbody td {
    pointer-events: none;
}

.employer-hub-team-table--skeleton tbody td {
    pointer-events: none;
}

.employer-hub-lms-table {
    width: 100%;
    min-width: 0;
}

.employer-hub-lms-table thead th:nth-child(1) { width: 46%; }
.employer-hub-lms-table thead th:nth-child(2) { width: 10%; }
.employer-hub-lms-table thead th:nth-child(3) { width: 8%; }
.employer-hub-lms-table thead th:nth-child(4) { width: 14%; }
.employer-hub-lms-table thead th:nth-child(5) { width: 22%; }

.employer-hub-lms-table td.employer-hub-lms-actions-cell,
.employer-hub-lms-table th:last-child {
    vertical-align: top;
}

.employer-hub-lms-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.employer-hub-lms-actions .ph-download-simple {
    margin-right: 0;
}

.employer-hub-lms-empty {
    color: var(--global-palette5);
}

@media (max-width: 1299px) and (min-width: 1025px) {
    .employer-hub-lms-table thead th:nth-child(1) { width: 40%; }
    .employer-hub-lms-table thead th:nth-child(2) { width: 12%; }
    .employer-hub-lms-table thead th:nth-child(3) { width: 10%; }
    .employer-hub-lms-table thead th:nth-child(4) { width: 16%; }
    .employer-hub-lms-table thead th:nth-child(5) { width: 22%; }

    .employer-hub-lms-table th,
    .employer-hub-lms-table td {
        padding: 0.7rem 0.6rem;
    }
}

@media (max-width: 1024px) and (min-width: 900px) {
    .employer-hub-lms-table thead th:nth-child(1) { width: 32%; }
    .employer-hub-lms-table thead th:nth-child(2) { width: 14%; }
    .employer-hub-lms-table thead th:nth-child(3) { width: 11%; }
    .employer-hub-lms-table thead th:nth-child(4) { width: 18%; }
    .employer-hub-lms-table thead th:nth-child(5) { width: 25%; }

    .employer-hub-lms-table th,
    .employer-hub-lms-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.9rem;
    }

    .employer-hub-lms-actions {
        flex-direction: column;
        gap: 0.35rem;
    }

    .employer-hub-lms-actions .nowl-button,
    .employer-hub-lms-actions a {
        min-width: 0;
    }
}

@media (max-width: 899px) and (min-width: 768px) {
    .employer-hub-lms-table thead th:nth-child(1) { width: 26%; }
    .employer-hub-lms-table thead th:nth-child(2) { width: 15%; }
    .employer-hub-lms-table thead th:nth-child(3) { width: 12%; }
    .employer-hub-lms-table thead th:nth-child(4) { width: 19%; }
    .employer-hub-lms-table thead th:nth-child(5) { width: 28%; }

    .employer-hub-lms-table th,
    .employer-hub-lms-table td {
        padding: 0.6rem 0.45rem;
        font-size: 0.875rem;
    }

    .employer-hub-lms-actions {
        flex-direction: column;
        gap: 0.35rem;
    }

    .employer-hub-lms-actions .nowl-button,
    .employer-hub-lms-actions a {
        min-width: 0;
    }
}

@media (min-width: 1300px) {
    .employer-hub-lms-table th,
    .employer-hub-lms-table td {
        padding: 0.75rem 1rem;
    }

    .employer-hub-lms-table-wrap {
        max-width: 1400px;
    }
}

@media (max-width: 899px) {
    .employer-hub-page .dashboard-header,
    .employer-hub-page h1 {
        font-size: 1.5rem;
        margin-bottom: 0.9rem;
    }

    .employer-hub-lms-table-wrap {
        overflow-x: visible;
    }

    .employer-hub-lms-table {
        min-width: 0;
        display: block;
        border: none;
    }

    .employer-hub-lms-table thead {
        display: none;
    }

    .employer-hub-lms-table tbody {
        display: block;
    }

    .employer-hub-lms-table .employer-hub-lms-row {
        display: block;
        margin-bottom: 1rem;
        padding: 1rem;
        background: var(--global-palette9);
        border: 1px solid var(--outline-color);
        border-radius: 8px;
    }

    .employer-hub-lms-table .employer-hub-lms-row td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.5rem 0;
        border: none !important;
        background: transparent !important;
        font-size: 0.95rem;
    }

    .employer-hub-lms-table .employer-hub-lms-row td:first-child {
        padding-top: 0;
        padding-bottom: 0.25rem;
        font-weight: 600;
        color: var(--global-palette3);
        font-size: 1rem;
    }

    .employer-hub-lms-table .employer-hub-lms-row td::before {
        content: attr(data-label);
        font-weight: 500;
        color: var(--global-palette5);
        flex: 0 0 40%;
        font-size: 0.85rem;
    }

    .employer-hub-lms-table .employer-hub-lms-row td.employer-hub-lms-actions-cell::before {
        content: none;
        flex: none;
    }

    .employer-hub-lms-table .employer-hub-lms-row td.employer-hub-lms-actions-cell {
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        border-top: 1px solid var(--outline-color);
        justify-content: flex-start;
    }

    .employer-hub-lms-actions {
        flex-direction: row;
    }

    .employer-hub-lms-actions .nowl-button,
    .employer-hub-lms-actions a {
        width: auto;
        min-width: 0;
    }

    .employer-hub-lms-request {
        max-width: none;
    }

    .nowl-pagination-wrapper {
        margin-top: 0.75rem;
    }

    .nowl-pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .nowl-page-range {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    
    .employer-hub-team-table-wrap {
        overflow-x: visible;
    }

    .employer-hub-team-table {
        min-width: 0;
        display: block;
        border: none;
    }

    .employer-hub-team-table thead {
        display: none;
    }

    .employer-hub-team-table tbody {
        display: block;
    }

    .employer-hub-team-table .employer-hub-team-row {
        display: block;
        margin-bottom: 1rem;
        padding: 1rem;
        background: var(--global-palette9);
        border: 1px solid var(--outline-color);
        border-radius: 8px;
    }

    .employer-hub-team-table .employer-hub-team-row td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.5rem 0;
        border: none !important;
        background: transparent !important;
        font-size: 0.95rem;
    }

    
    .employer-hub-team-table .employer-hub-team-row td:first-child,
    .employer-hub-team-table .employer-hub-team-row td:nth-child(2) {
        flex: 1 1 100%;
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .employer-hub-team-table .employer-hub-team-row td:first-child {
        padding-top: 0;
        padding-bottom: 0.25rem;
        font-weight: 600;
        color: var(--global-palette3);
        font-size: 1rem;
    }

    .employer-hub-team-table .employer-hub-team-row td::before {
        content: attr(data-label);
        font-weight: 500;
        color: var(--global-palette5);
        flex: 0 0 40%;
        font-size: 0.85rem;
    }

    .employer-hub-team-table .employer-hub-team-row td.employer-hub-team-row__actions::before {
        content: none;
        flex: none;
    }

    .employer-hub-team-table .employer-hub-team-row td.employer-hub-team-row__actions {
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        border-top: 1px solid var(--outline-color);
        justify-content: flex-start;
    }

    .employer-hub-team-table .employer-hub-team-row__actions .nowl-button {
        width: auto;
        min-width: 0;
    }

    
    @media (max-width: 400px) {
        .employer-hub-team-table .employer-hub-team-row td:first-child,
        .employer-hub-team-table .employer-hub-team-row td:nth-child(2) {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }

        .employer-hub-team-table .employer-hub-team-row td:first-child::before,
        .employer-hub-team-table .employer-hub-team-row td:nth-child(2)::before {
            flex: none;
        }
    }

    
    .employer-hub-billing-invoices-wrap {
        overflow-x: visible;
        min-width: 0;
    }

    .employer-hub-billing-invoices {
        min-width: 0 !important;
        display: block;
        border: none;
    }

    .employer-hub-billing-invoices thead {
        display: none;
    }

    .employer-hub-billing-invoices tbody {
        display: block;
    }

    .employer-hub-billing-invoices tbody tr {
        display: block;
        margin-bottom: 1rem;
        padding: 1rem;
        background: var(--global-palette9);
        border: 1px solid var(--outline-color);
        border-radius: 8px;
    }

    .employer-hub-billing-invoices tbody tr td {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.5rem 0;
        border: none !important;
        background: transparent !important;
        font-size: 0.95rem;
    }

    .employer-hub-billing-invoices tbody tr td:first-child {
        padding-top: 0;
        padding-bottom: 0.25rem;
        font-weight: 600;
        color: var(--global-palette3);
        font-size: 1rem;
    }

    .employer-hub-billing-invoices tbody tr td::before {
        content: attr(data-label);
        font-weight: 500;
        color: var(--global-palette5);
        flex: 0 0 40%;
        font-size: 0.85rem;
    }

    .employer-hub-billing-invoices tbody tr td:last-child::before {
        content: none;
        flex: none;
    }

    .employer-hub-billing-invoices tbody tr td:last-child {
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        border-top: 1px solid var(--outline-color);
        justify-content: flex-start;
    }

    
    .employer-hub-billing-invoices--agreements tbody tr td:first-child::before {
        content: none !important;
        display: none;
    }

    .employer-hub-billing-agreement-actions {
        flex-wrap: nowrap;
    }
}

.employer-hub-lms-modal .nowl_modal__header,
.employer-hub-workshop-modal .nowl_modal__header,
.employer-hub-essentials-modal .nowl_modal__header {
    margin-bottom: 0.5rem;
}

.employer-hub-essentials-modal--delivery-change .nowl_modal__header {
    margin-bottom: 1.5rem;
}

.employer-hub-lms-request__lead {
    color: var(--global-palette5);
    font-size: 0.95rem;
    margin: 0 0 2.25rem;
    line-height: 1.4;
}

.employer-hub-lms-request__optional {
    font-weight: 300;
    color: var(--global-palette5);
}

.employer-hub-lms-modal .ai-form-container input,
.employer-hub-lms-modal .ai-form-container textarea,
.employer-hub-workshop-modal .ai-form-container input,
.employer-hub-workshop-modal .ai-form-container textarea,
.employer-hub-essentials-modal .ai-form-container input,
.employer-hub-essentials-modal .ai-form-container textarea {
    background-color: var(--global-palette7) !important;
    border: 1px solid var(--outline-color) !important;
    border-radius: 3px;
    padding: 0.6rem 0.75rem;
}

.employer-hub-lms-modal .ai-form-container label,
.employer-hub-workshop-modal .ai-form-container label,
.employer-hub-essentials-modal .ai-form-container label {
    font-weight: 300;
}

.employer-hub-lms-modal .ai-form-container .nowl_modal__field_label,
.employer-hub-workshop-modal .ai-form-container .nowl_modal__field_label,
.employer-hub-essentials-modal .ai-form-container .nowl_modal__field_label {
    margin-bottom: 0.5rem;
}

.employer-hub-lms-request__flash {
    max-width: 100%;
}

.employer-hub-workshops-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.employer-hub-workshops-header .employer-hub-page__lead {
    margin-bottom: 0;
}

.employer-hub-workshops-header__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-self: flex-start;
}

@media (max-width: 480px) {
    .employer-hub-workshops-header {
        flex-direction: column;
        align-items: stretch;
    }

    .employer-hub-workshops-header__actions {
        width: 100%;
    }

    .employer-hub-workshops-header__actions .nowl-button {
        width: 100%;
        justify-content: center;
    }
}

.employer-hub-workshops-empty {
    color: var(--global-palette5);
}

.employer-hub-empty-card {
    background-color: var(--global-palette9);
    border: 1px solid var(--outline-color, #e0e0e0);
    border-radius: 8px;
    padding: 1.5rem;
}

.employer-hub-workshops-empty a {
    color: var(--global-palette2);
    text-decoration: none;
}

.employer-hub-workshops-empty a:hover {
    text-decoration: underline;
}

.workshops-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.workshop-card {
    background-color: var(--global-palette9);
    border-radius: 1rem;
    border: 1px solid var(--outline-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.workshop-card:hover {
    background-color: var(--portal-card-hover);
    border-color: var(--global-palette2);
}

.workshop-card--cancelled {
    opacity: 0.85;
}

.workshop-card--skeleton {
    cursor: default;
    pointer-events: none;
}

.workshop-card--skeleton:hover {
    background-color: var(--global-palette9);
    border-color: var(--outline-color);
}

.workshop-card__image-wrap--skeleton,
.workshop-card__title--skeleton,
.workshop-card__date--skeleton {
    background: linear-gradient(
        90deg,
        var(--global-palette8, #eee) 0%,
        var(--global-palette7, #e8e8e8) 50%,
        var(--global-palette8, #eee) 100%
    );
    background-size: 200% 100%;
    animation: workshop-card-shimmer 3s ease-in-out infinite;
    border-radius: 4px;
}

.workshop-card__image-wrap--skeleton {
    width: 100%;
}

.workshop-card__title--skeleton {
    height: 1.3em;
    width: 85%;
}

.workshop-card__date--skeleton {
    height: 1em;
    width: 55%;
    margin-top: 0.5rem;
}

@keyframes workshop-card-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.workshop-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--global-palette7);
    overflow: hidden;
}

.workshop-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.workshop-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-palette5);
}

.workshop-card__image--placeholder .ph {
    font-size: 3rem;
}

.workshop-card__tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    background: var(--global-palette8);
    color: var(--global-palette4);
}

.workshop-card__tag--virtual {
    background: var(--global-palette2);
    color: white;
}

.workshop-card__tag--onsite {
    background: var(--green);
    color: white;
}

.workshop-card__cancelled {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    background: #c00;
    color: white;
}

.workshop-card__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.workshop-card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--global-palette3);
    line-height: 1.3;
}

.workshop-card__date {
    font-size: 0.9rem;
    color: var(--global-palette5);
}

.employer-hub-workshop-modal__content {
    max-width: 560px;
}

.employer-hub-workshop-modal__content--scrollable {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.employer-hub-workshop-modal__content--scrollable .nowl_modal__header {
    margin-bottom: 0.875rem;
}

.employer-hub-workshop-detail__body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.employer-hub-workshop-modal__content--scrollable .nowl_modal__actions {
    flex-shrink: 0;
    padding-top: 1rem;
}

.employer-hub-workshop-detail__image-wrap {
    margin-bottom: 1rem;
}

.employer-hub-workshop-detail__image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.employer-hub-workshop-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.employer-hub-workshop-modal .employer-hub-workshop-detail .workshop-card__cancelled {
    position: static;
    top: auto;
    right: auto;
}

.employer-hub-workshop-detail__tag {
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.employer-hub-workshop-detail__date {
    font-size: 0.95rem;
    color: var(--global-palette5);
}

.employer-hub-workshop-detail__location {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.employer-hub-workshop-detail__description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--global-palette5);
}

.employer-hub-workshop-detail__description--empty {
    font-style: italic;
    color: var(--global-palette5);
}

.employer-hub-workshop-detail__description.blog-content p {
    margin: 0 0 0.75rem;
}

.employer-hub-workshop-detail__description.blog-content p:last-child {
    margin-bottom: 0;
}

.employer-hub-workshop-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--outline-color);
}

.employer-hub-workshop-request__lead {
    color: var(--global-palette5);
    font-size: 0.95rem;
    margin: 0 0 2.25rem;
    line-height: 1.4;
}

.employer-hub-workshop-request__flash {
    max-width: 100%;
}

.employer-hub-workshop-modal .ai-form-container .nowl_modal__fields,
.employer-hub-essentials-modal .ai-form-container .nowl_modal__fields {
    row-gap: 1.25rem;
}

.employer-hub-workshop-modal .ai-form-container .nowl_modal__field_input,
.employer-hub-essentials-modal .ai-form-container .nowl_modal__field_input {
    margin-bottom: 0;
}

.employer-hub-workshop-modal .request-workshop-textarea,
.employer-hub-essentials-modal .request-workshop-textarea {
    min-height: 5.5rem;
    resize: vertical;
}

.employer-hub-support {
    max-width: 36rem;
    margin-top: 3rem;
}

.employer-hub-support .ai-form-container input,
.employer-hub-support .ai-form-container textarea,
.employer-hub-support .ai-form-container select {
    background-color: var(--global-palette7) !important;
    border: 1px solid var(--outline-color) !important;
    border-radius: 3px;
    padding: 0.6rem 0.75rem;
}

.employer-hub-support .ai-form-container label {
    font-weight: 300;
}

.employer-hub-support .ai-form-container .nowl_modal__field_label {
    margin-bottom: 0.5rem;
}

.employer-hub-support .ai-form-container .nowl_modal__fields {
    row-gap: 1.25rem;
}

.employer-hub-support .ai-form-container .nowl_modal__field_input {
    margin-bottom: 0;
}

.employer-hub-support__textarea {
    min-height: 5.5rem;
    resize: vertical;
}

.employer-hub-support__flash {
    max-width: 100%;
}

.employer-hub-team-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}

.employer-hub-team-header > div {
    min-width: 0;
}

.employer-hub-team-header .employer-hub-page__lead {
    margin-bottom: 0;
}

.employer-hub-team-header__actions {
    flex-shrink: 0;
}

.employer-hub-team-header__actions .nowl-button .ph {
    margin-right: 0.1rem;
    font-size: 1.3rem;
}

.employer-hub-team-invite-modal .ai-form-container input,
.employer-hub-team-invite-modal .ai-form-container textarea {
    background-color: var(--global-palette7) !important;
    border: 1px solid var(--outline-color) !important;
    border-radius: 3px;
    padding: 0.6rem 0.75rem;
}

.employer-hub-team-invite-modal .ai-form-container label {
    font-weight: 300;
}

.employer-hub-team-invite-modal .ai-form-container .nowl_modal__field_label {
    margin-bottom: 0.5rem;
}

.employer-hub-team-invite-modal .ai-form-container .nowl_modal__fields {
    row-gap: 1.25rem;
}

.employer-hub-team-invite-modal .ai-form-container .nowl_modal__field_input {
    margin-bottom: 0;
}

.employer-hub-team-invite__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.employer-hub-team-invite__flash {
    margin-bottom: 0.5rem;
}

.employer-hub-team-invite-modal .nowl_modal__actions {
    margin-top: 1.25rem;
}

.employer-hub-team-list__title {
    font-size: 1.25rem;
    margin: 0;
    padding-bottom: 1rem;
}

.employer-hub-team-list__loading,
.employer-hub-team-list__empty {
    margin: 0;
}

.employer-hub-team-list__empty {
    margin-top: 0;
}

.employer-hub-team-list__empty p {
    margin: 0;
    color: var(--global-palette5);
}

.employer-hub-team-table-wrap {
    overflow-x: auto;
    margin-top: 0;
}

.employer-hub-team-table {
    width: 100%;
}

.employer-hub-team-row__actions {
    white-space: nowrap;
}

.employer-hub-team-row__actions .nowl-button {
    margin-right: 0.5rem;
}

.employer-hub-remove-modal__text {
    margin: 0 0 1.25rem;
}

.employer-hub-remove-modal__text + .nowl_modal__actions {
    margin-top: 2rem;
}

.employer-hub-remove-modal .nowl_modal__header {
    text-align: left;
}

.employer-hub-page__loading {
    color: var(--global-palette5);
    margin: 0;
}

.employer-hub-billing-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.employer-hub-billing-card {
    margin-bottom: 0;
    padding: 1.5rem 1.75rem;
    min-width: 0;
    container-type: inline-size;
}

.employer-hub-billing-card .nowl-card__body {
    margin-top: 1rem;
    min-width: 0;
}

.employer-hub-billing-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--global-palette7, rgba(255, 255, 255, 0.1));
}

.employer-hub-billing-card .employer-hub-billing-dl {
    margin-top: 0;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .employer-hub-billing-cards-row {
        margin-bottom: 2.5rem;
    }

    .employer-hub-billing-card {
        padding: 1.25rem 1.5rem;
    }

    .employer-hub-billing-dl {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .employer-hub-billing-dl dt {
        margin-top: 0.75rem;
    }

    .employer-hub-billing-dl dt:first-child {
        margin-top: 0;
    }

    .employer-hub-billing-section--invoices .employer-hub-billing-invoices-wrap {
        margin-bottom: 2.5rem;
    }

    .employer-hub-billing-invoices {
        min-width: 0;
    }
}

.employer-hub-billing-card .nowl-card__header .employer-hub-billing-section__title {
    margin: 0;
    font-size: 1.25rem;
    color: var(--global-palette4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.employer-hub-billing-card .employer-hub-billing-section__title .ph {
    font-size: 1.35rem;
    flex-shrink: 0;
    color: var(--global-palette5);
}

.employer-hub-billing-section {
    margin-bottom: 0;
}

.employer-hub-billing-section__title {
    font-size: 1.25rem;
    margin: 0;
    color: var(--global-palette4);
}

.employer-hub-billing-section .employer-hub-billing-invoices-wrap {
    margin-top: 1.25rem;
}

.employer-hub-billing-section--invoices .employer-hub-billing-invoices-wrap {
    margin-bottom: 3.5rem;
}

.employer-hub-billing-dl {
    display: grid;
    
    grid-template-columns: clamp(5.5rem, 30cqi, 10rem) minmax(0, 1fr);
    gap: 0.5rem clamp(0.5rem, 4cqi, 1.5rem);
    margin: 0;
    max-width: min(36rem, 100%);
    min-width: 0;
}

.employer-hub-billing-dl dt {
    font-weight: 500;
    color: var(--global-palette5);
    margin: 0;
}

.employer-hub-billing-dl dd {
    margin: 0;
    color: var(--global-palette3);
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.employer-hub-billing-included {
    white-space: pre-wrap;
    word-break: break-word;
}

.employer-hub-billing-invoices-wrap {
    overflow-x: auto;
}

.employer-hub-billing-invoices {
    width: 100%;
    min-width: 400px;
}

.employer-hub-billing-invoices .ph-download-simple {
    font-size: 1.2rem;
}

.employer-hub-billing-invoices-empty {
    color: var(--global-palette5);
    margin: 0;
}

.employer-hub-billing-card--agreements-empty .nowl-card__body {
    margin-top: 0;
}

.employer-hub-billing-card--agreements-empty .employer-hub-billing-invoices-empty {
    margin: 0;
}

.employer-hub-billing-agreement-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 900px) {
    .employer-hub-billing-invoices--agreements th:last-child,
    .employer-hub-billing-invoices--agreements td:last-child {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .employer-hub-billing-dl {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .employer-hub-billing-dl dt {
        margin-top: 0.75rem;
    }

    .employer-hub-billing-dl dt:first-child {
        margin-top: 0;
    }
}

.employer-hub-essentials__sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.employer-hub-essentials__section {
    margin: 0;
}

.employer-hub-essentials__title {
    margin-top: 0;
    font-size: 1.25rem;
}

.employer-hub-essentials .employer-hub-page__card > h2.employer-hub-essentials__title {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
}

.employer-hub-essentials__text {
    margin: 0 0 1.25rem;
    line-height: 1.55;
    color: var(--global-palette4, #444);
    white-space: pre-wrap;
}

.employer-hub-essentials__package {
    margin: 0 0 1.25rem;
}

.employer-hub-essentials__package-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--global-palette3, #333);
}

.employer-hub-essentials__package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
    gap: 0.85rem 1rem;
    margin: 0;
    padding: 0;
}

.employer-hub-essentials__package-card {
    margin: 0;
    border-radius: 0.5rem;
    border: 1px solid var(--global-palette7, #e2e8f0);
    background: var(--global-palette9, #f8fafc);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.employer-hub-essentials__package-card-media {
    aspect-ratio: 4 / 3;
    background: var(--global-palette8, #edf2f7);
    overflow: hidden;
}

.employer-hub-essentials__package-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.employer-hub-essentials__package-card-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-palette5, #718096);
}

.employer-hub-essentials__package-card-media--placeholder .ph {
    font-size: 2rem;
    opacity: 0.65;
}

.employer-hub-essentials__package-card-name {
    margin: 0;
    padding: 0.65rem 0.7rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--global-palette3, #333);
    text-align: left;
}

@media (max-width: 32rem) {
    .employer-hub-essentials__package-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .employer-hub-essentials__package-cards {
        grid-template-columns: 1fr;
    }
}

.employer-hub-essentials__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.employer-hub-essentials__delivery-actions {
    margin-top: 1.75rem;
}

.employer-hub-essentials__actions .nowl-button .ph {
    font-size: 1.15rem;
    flex-shrink: 0;
    line-height: 1;
}

.employer-hub-essentials__delivery {
    margin: 0;
    font-size: 1.1rem;
    color: var(--global-palette4, #444);
    line-height: 1.55;
}

.employer-hub-essentials__delivery strong {
    color: inherit;
    font-weight: 600;
}

.employer-hub-essentials__delivery--muted {
    color: var(--global-palette5, #666);
    font-style: italic;
}

.employer-hub-essentials .employer-hub-essentials__actions a.nowl-button:not(.nowl-button--outline) {
    color: var(--text-on-accent);
    text-decoration: none !important;
}

.employer-hub-essentials .employer-hub-essentials__actions a.nowl-button:not(.nowl-button--outline):hover,
.employer-hub-essentials .employer-hub-essentials__actions a.nowl-button:not(.nowl-button--outline):focus {
    color: var(--text-on-accent);
    text-decoration: none !important;
}

.employer-hub-essentials .employer-hub-essentials__actions a.nowl-button--outline,
.employer-hub-essentials .employer-hub-essentials__actions button.nowl-button--outline {
    color: var(--global-palette5);
    background: none;
    border: 2px solid var(--global-palette1);
}

.employer-hub-essentials .employer-hub-essentials__actions a.nowl-button--outline:hover,
.employer-hub-essentials .employer-hub-essentials__actions button.nowl-button--outline:hover:not(:disabled) {
    color: var(--global-palette3);
    border-color: var(--global-palette2);
    background: none;
}

.employer-hub-essentials .employer-hub-essentials__actions button.nowl-button--outline:disabled,
.employer-hub-essentials .employer-hub-essentials__actions button.nowl-button--outline:hover:disabled {
    color: var(--global-palette5);
    border-color: var(--global-palette1);
    opacity: 0.55;
    cursor: not-allowed;
}

