
/*
|--------------------------------------------------------------------------
| Vimeva LMS Student/Instructor Shell - 0.3.67
|--------------------------------------------------------------------------
| Global visual shell inspired by the supplied Vimeva LMS mockup.
| This file intentionally styles the central panel shell first; individual
| screens can be upgraded in later releases without breaking routes/runtime.
*/

:root {
    --vimeva-lms-primary: #7c2bdc;
    --vimeva-lms-brand: #a0267d;
    --vimeva-lms-ink: #14183f;
    --vimeva-lms-muted: #7180a7;
    --vimeva-lms-line: #edf0fb;
    --vimeva-lms-bg: #f8f9ff;
    --vimeva-lms-card: #ffffff;
    --vimeva-lms-soft-purple: #f2eaff;
    --vimeva-lms-shadow: 0 18px 50px rgba(32, 39, 85, .07);
    --vimeva-lms-shadow-soft: 0 10px 30px rgba(32, 39, 85, .055);
}

body.vimeva-lms-panel-shell {
    background: var(--vimeva-lms-bg) !important;
    color: var(--vimeva-lms-ink);
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

body.vimeva-lms-panel-shell #panel_app {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(124, 43, 220, .07), transparent 32rem),
        linear-gradient(180deg, #fff 0%, var(--vimeva-lms-bg) 17rem);
}

body.vimeva-lms-panel-shell .panel-header {
    min-height: 78px;
    border-bottom: 1px solid var(--vimeva-lms-line);
    box-shadow: 0 8px 24px rgba(18, 24, 60, .035);
    position: sticky;
    top: 0;
    z-index: 30;
}

body.vimeva-lms-panel-shell .panel-header__contents {
    border-bottom: 0 !important;
    padding-right: 28px;
}

body.vimeva-lms-panel-shell .panel-header__logo-box {
    border-right: 1px solid var(--vimeva-lms-line);
}

body.vimeva-lms-panel-shell .panel-header__logo img {
    max-height: 42px;
}

body.vimeva-lms-panel-shell .navbar-item {
    color: #53618d !important;
    font-weight: 700;
    position: relative;
}

body.vimeva-lms-panel-shell .navbar-item:hover,
body.vimeva-lms-panel-shell .navbar-item.active {
    color: var(--vimeva-lms-primary) !important;
}

body.vimeva-lms-panel-shell .navbar-item.active:after,
body.vimeva-lms-panel-shell .navbar-item:hover:after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 999px;
    background: var(--vimeva-lms-primary);
}

body.vimeva-lms-panel-shell .panel-sidebar {
    width: 290px;
    border-right: 1px solid var(--vimeva-lms-line);
    background: rgba(255,255,255,.96) !important;
    box-shadow: 10px 0 30px rgba(32, 39, 85, .035);
}

body.vimeva-lms-panel-shell .panel-sidebar__contents {
    background: #fff !important;
    padding-left: 18px;
    padding-right: 18px;
}

body.vimeva-lms-panel-shell .panel-sidebar__user-avatar {
    width: 92px !important;
    height: 92px !important;
    padding: 4px;
    background: linear-gradient(135deg, var(--vimeva-lms-primary), var(--vimeva-lms-brand));
    box-shadow: 0 14px 34px rgba(124, 43, 220, .24);
}

body.vimeva-lms-panel-shell .panel-sidebar__user-avatar img {
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
}

body.vimeva-lms-panel-shell .panel-sidebar h4 {
    font-size: 16px !important;
    color: var(--vimeva-lms-ink) !important;
    margin-top: 12px !important;
}

body.vimeva-lms-panel-shell .panel-sidebar .rounded-10.bg-gray {
    background: #fff !important;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 16px !important;
    box-shadow: var(--vimeva-lms-shadow-soft);
    min-width: 220px;
}

body.vimeva-lms-panel-shell #sidebarAccordions {
    padding-top: 24px;
}

body.vimeva-lms-panel-shell #sidebarAccordions a,
body.vimeva-lms-panel-shell #sidebarAccordions .sidebar-menu-item {
    border-radius: 14px !important;
    color: #25305f !important;
    font-weight: 700;
}

body.vimeva-lms-panel-shell #sidebarAccordions a:hover,
body.vimeva-lms-panel-shell #sidebarAccordions .active,
body.vimeva-lms-panel-shell #sidebarAccordions .router-link-active {
    background: linear-gradient(90deg, rgba(124,43,220,.12), rgba(160,38,125,.08)) !important;
    color: var(--vimeva-lms-primary) !important;
}

body.vimeva-lms-panel-shell .panel-content {
    background: transparent !important;
}

body.vimeva-lms-panel-shell .panel-content__scrollable {
    padding: 28px 40px 56px !important;
}

body.vimeva-lms-panel-shell .panel-title-and-breadcrumb,
body.vimeva-lms-panel-shell .panel-content > .bg-white,
body.vimeva-lms-panel-shell .dashboard-body > .bg-white {
    border-radius: 24px;
}

body.vimeva-lms-panel-shell .bg-white,
body.vimeva-lms-panel-shell .card,
body.vimeva-lms-panel-shell .vimeva-lms-card {
    border: 1px solid var(--vimeva-lms-line) !important;
    border-radius: 24px !important;
    box-shadow: var(--vimeva-lms-shadow);
}

body.vimeva-lms-panel-shell .card .card-header,
body.vimeva-lms-panel-shell .card .card-body {
    border-color: var(--vimeva-lms-line) !important;
}

body.vimeva-lms-panel-shell h1,
body.vimeva-lms-panel-shell h2,
body.vimeva-lms-panel-shell h3,
body.vimeva-lms-panel-shell h4 {
    color: var(--vimeva-lms-ink);
}

body.vimeva-lms-panel-shell .text-gray-500,
body.vimeva-lms-panel-shell .text-gray {
    color: var(--vimeva-lms-muted) !important;
}

body.vimeva-lms-panel-shell .btn,
body.vimeva-lms-panel-shell button {
    border-radius: 14px;
}

body.vimeva-lms-panel-shell .btn-primary {
    background: linear-gradient(135deg, var(--vimeva-lms-primary), var(--vimeva-lms-brand)) !important;
    border-color: transparent !important;
    box-shadow: 0 12px 25px rgba(124, 43, 220, .18);
}

body.vimeva-lms-panel-shell .form-control,
body.vimeva-lms-panel-shell .select2-selection,
body.vimeva-lms-panel-shell input,
body.vimeva-lms-panel-shell select,
body.vimeva-lms-panel-shell textarea {
    border-radius: 14px !important;
    border-color: #e7eafd !important;
}

body.vimeva-lms-panel-shell .custom-tabs-items-scrollable-mobile {
    border-top: 0 !important;
    border-bottom: 1px solid var(--vimeva-lms-line) !important;
}

body.vimeva-lms-panel-shell .custom-tabs-items-scrollable-mobile a,
body.vimeva-lms-panel-shell .custom-tabs-items-scrollable-mobile .nav-link {
    font-weight: 800;
    color: #53618d;
}

body.vimeva-lms-panel-shell .custom-tabs-items-scrollable-mobile a.active,
body.vimeva-lms-panel-shell .custom-tabs-items-scrollable-mobile .nav-link.active {
    color: var(--vimeva-lms-primary);
}

body.vimeva-lms-panel-shell .panel-bottom-bar {
    border-top: 1px solid var(--vimeva-lms-line);
    box-shadow: 0 -12px 30px rgba(32, 39, 85, .04);
}

.vimeva-lms-settings-shell {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
}

.vimeva-lms-settings-hero {
    margin-bottom: 18px;
}

.vimeva-lms-settings-hero h1 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
}

.vimeva-lms-settings-hero p {
    color: var(--vimeva-lms-muted);
    font-weight: 600;
}

.vimeva-lms-settings-card {
    background: #fff;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 24px;
    box-shadow: var(--vimeva-lms-shadow);
    padding: 22px;
}

@media (max-width: 991.98px) {
    body.vimeva-lms-panel-shell .panel-sidebar {
        width: 280px;
    }

    body.vimeva-lms-panel-shell .panel-content__scrollable {
        padding: 20px 16px 40px !important;
    }

    body.vimeva-lms-panel-shell .panel-header {
        min-height: 66px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Settings Mockup Page - 0.3.67
|--------------------------------------------------------------------------
*/

.vimeva-lms-settings-mockup-page {
    max-width: 1660px;
    margin: 0 auto 56px;
}

.vimeva-lms-settings-mockup-page .vimeva-lms-settings-hero {
    margin-bottom: 26px;
}

.vimeva-lms-settings-mockup-page .vimeva-lms-settings-hero h1 {
    font-size: 30px;
    letter-spacing: -.03em;
}

.vimeva-settings-mockup {
    display: block;
}

.vimeva-settings-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding: 4px 4px 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--vimeva-lms-line);
}

.vimeva-settings-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    color: #53618d;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.vimeva-settings-tab:hover,
.vimeva-settings-tab.is-active {
    color: var(--vimeva-lms-primary);
    text-decoration: none;
}

.vimeva-settings-tab.is-active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -17px;
    height: 3px;
    border-radius: 999px;
    background: var(--vimeva-lms-primary);
}

.vimeva-settings-tab__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    background: rgba(124,43,220,.08);
    color: var(--vimeva-lms-primary);
    font-size: 12px;
}

.vimeva-settings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.vimeva-settings-widget,
.vimeva-settings-integrations {
    background: #fff;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 24px;
    box-shadow: var(--vimeva-lms-shadow);
    padding: 22px;
}

.vimeva-settings-widget__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.vimeva-settings-widget__head h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.vimeva-settings-widget__head p {
    margin: 4px 0 0;
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    font-weight: 650;
}

.vimeva-settings-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid #e4e8fb;
    border-radius: 10px;
    color: var(--vimeva-lms-primary);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    background: #fff;
}

.vimeva-settings-mini-btn:hover {
    background: var(--vimeva-lms-soft-purple);
    color: var(--vimeva-lms-primary);
    text-decoration: none;
}

.vimeva-settings-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.vimeva-settings-profile__avatar {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    padding: 4px;
    background: linear-gradient(135deg, var(--vimeva-lms-primary), var(--vimeva-lms-brand));
    position: relative;
    flex: 0 0 88px;
}

.vimeva-settings-profile__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 3px solid #fff;
    object-fit: cover;
}

.vimeva-settings-profile__avatar span {
    position: absolute;
    right: 6px;
    bottom: 8px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #33d28d;
    border: 3px solid #fff;
}

.vimeva-settings-profile h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.vimeva-settings-profile p {
    margin: 5px 0 8px;
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    font-weight: 650;
}

.vimeva-settings-pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--vimeva-lms-soft-purple);
    color: var(--vimeva-lms-primary);
    font-weight: 850;
    font-size: 12px;
}

.vimeva-settings-details {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--vimeva-lms-line);
}

.vimeva-settings-details div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--vimeva-lms-line);
}

.vimeva-settings-details span {
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    font-weight: 750;
}

.vimeva-settings-details strong {
    color: var(--vimeva-lms-ink);
    font-size: 12px;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.vimeva-settings-list,
.vimeva-settings-toggle-list {
    display: grid;
    gap: 0;
}

.vimeva-settings-row,
.vimeva-settings-toggle-list > div {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--vimeva-lms-line);
}

.vimeva-settings-row:last-child,
.vimeva-settings-toggle-list > div:last-child {
    border-bottom: 0;
}

.vimeva-settings-row__icon,
.vimeva-settings-toggle-list span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.vimeva-settings-row strong,
.vimeva-settings-toggle-list strong {
    font-size: 13px;
    font-weight: 900;
    color: var(--vimeva-lms-ink);
}

.vimeva-settings-row em,
.vimeva-settings-toggle-list em {
    color: #53618d;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
}

.vimeva-settings-toggle-list > div {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.vimeva-settings-toggle-list > div strong,
.vimeva-settings-toggle-list > div em {
    display: block;
}

.vimeva-settings-toggle-list b {
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vimeva-lms-primary), var(--vimeva-lms-brand));
    position: relative;
}

.vimeva-settings-toggle-list b:after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #fff;
    position: absolute;
    right: 3px;
    top: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.vimeva-settings-row__icon.is-purple,
.vimeva-settings-toggle-list .is-purple { background: #f2eaff; color: #7c2bdc; }
.vimeva-settings-row__icon.is-green,
.vimeva-settings-toggle-list .is-green { background: #eafbf2; color: #21a86b; }
.vimeva-settings-row__icon.is-blue,
.vimeva-settings-toggle-list .is-blue { background: #edf4ff; color: #3d7ff2; }
.vimeva-settings-row__icon.is-pink,
.vimeva-settings-toggle-list .is-pink { background: #fff0f7; color: #ef3d83; }
.vimeva-settings-row__icon.is-orange,
.vimeva-settings-toggle-list .is-orange { background: #fff5e8; color: #f28a23; }

.vimeva-settings-row--colors em {
    display: inline-flex;
    gap: 8px;
}

.vimeva-settings-row--colors i {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    background: var(--vimeva-lms-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(83, 97, 141, .16);
}

.vimeva-settings-row--colors i:nth-child(2) { background: #4285f4; }
.vimeva-settings-row--colors i:nth-child(3) { background: #22c7a9; }
.vimeva-settings-row--colors i:nth-child(4) { background: #8ac926; }
.vimeva-settings-row--colors i:nth-child(5) { background: #ff8a22; }

.vimeva-settings-plan {
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(135deg, var(--vimeva-lms-primary), var(--vimeva-lms-brand));
    color: #fff;
    margin-bottom: 16px;
}

.vimeva-settings-plan span,
.vimeva-settings-plan em {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.vimeva-settings-plan strong {
    display: block;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.vimeva-settings-plan em {
    display: inline-flex;
    margin-top: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    padding: 5px 10px;
    color: #fff;
}

.vimeva-settings-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.vimeva-settings-checklist li {
    color: #53618d;
    font-size: 12px;
    font-weight: 750;
}

.vimeva-settings-checklist li:before {
    content: "✓";
    color: #21a86b;
    font-weight: 900;
    margin-right: 8px;
}

.vimeva-settings-integrations {
    margin-top: 22px;
}

.vimeva-settings-integration-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.vimeva-settings-integration {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 18px;
    padding: 16px;
    text-decoration: none;
    color: var(--vimeva-lms-ink);
}

.vimeva-settings-integration:hover {
    background: #fbf7ff;
    text-decoration: none;
}

.vimeva-settings-integration span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #f2eaff;
    color: var(--vimeva-lms-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.vimeva-settings-integration strong,
.vimeva-settings-integration em {
    display: block;
}

.vimeva-settings-integration strong {
    font-size: 13px;
    font-weight: 900;
    color: var(--vimeva-lms-ink);
}

.vimeva-settings-integration em {
    margin-top: 3px;
    color: var(--vimeva-lms-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.vimeva-lms-settings-form-card {
    padding: 0 !important;
    overflow: hidden;
}

.vimeva-lms-settings-form-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 0;
}

.vimeva-lms-settings-form-card__head h2 {
    font-size: 18px;
    font-weight: 950;
    margin: 0;
}

.vimeva-lms-settings-form-card__head p {
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    font-weight: 700;
    margin: 4px 0 0;
}

.vimeva-lms-settings-form-card__head > span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: #f2eaff;
    color: var(--vimeva-lms-primary);
    font-weight: 850;
    font-size: 12px;
}

.vimeva-lms-settings-form-card .custom-tabs {
    padding: 0 22px 22px;
}

@media (max-width: 1399.98px) {
    .vimeva-settings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vimeva-settings-integration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .vimeva-settings-grid,
    .vimeva-settings-integration-grid {
        grid-template-columns: 1fr;
    }

    .vimeva-settings-details div,
    .vimeva-settings-row,
    .vimeva-settings-toggle-list > div {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .vimeva-settings-row em,
    .vimeva-settings-toggle-list b {
        grid-column: 2;
        justify-self: flex-start;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Dashboard Mockup Page - 0.3.67
|--------------------------------------------------------------------------
*/

.vimeva-dashboard-mockup-page {
    max-width: 1660px;
    margin: 0 auto 56px;
}

.vimeva-dashboard-mockup {
    display: block;
}

.vimeva-dashboard-hero {
    min-height: 245px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 28px;
    border-radius: 30px;
    padding: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.22), transparent 13rem),
        linear-gradient(135deg, var(--vimeva-lms-primary) 0%, var(--vimeva-lms-brand) 55%, #4f28bf 100%);
    box-shadow: 0 28px 70px rgba(124,43,220,.22);
    position: relative;
    overflow: hidden;
}

.vimeva-dashboard-hero:before,
.vimeva-dashboard-hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
}

.vimeva-dashboard-hero:before {
    width: 240px;
    height: 240px;
    right: -80px;
    top: -80px;
}

.vimeva-dashboard-hero:after {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -90px;
}

.vimeva-dashboard-hero__content,
.vimeva-dashboard-profile-card {
    position: relative;
    z-index: 1;
}

.vimeva-dashboard-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.vimeva-dashboard-hero h1 {
    max-width: 680px;
    margin: 18px 0 10px;
    color: #fff !important;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.045em;
}

.vimeva-dashboard-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    font-weight: 650;
}

.vimeva-dashboard-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.vimeva-dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.vimeva-dashboard-btn:hover {
    text-decoration: none;
}

.vimeva-dashboard-btn--primary {
    background: #fff;
    color: var(--vimeva-lms-primary);
    box-shadow: 0 16px 38px rgba(0,0,0,.10);
}

.vimeva-dashboard-btn--ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.10);
}

.vimeva-dashboard-profile-card {
    min-height: 178px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.vimeva-dashboard-profile-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    padding: 4px;
    background: rgba(255,255,255,.20);
    position: relative;
    flex: 0 0 88px;
}

.vimeva-dashboard-profile-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    border: 3px solid #fff;
}

.vimeva-dashboard-profile-card__avatar span {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 6px;
    bottom: 8px;
    border-radius: 999px;
    background: #33d28d;
    border: 3px solid #fff;
}

.vimeva-dashboard-profile-card h3 {
    margin: 0;
    color: #fff !important;
    font-size: 18px;
    font-weight: 950;
}

.vimeva-dashboard-profile-card p {
    margin: 5px 0 10px;
    font-size: 12px;
    color: rgba(255,255,255,.72);
    overflow-wrap: anywhere;
}

.vimeva-dashboard-pill {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 850;
}

.vimeva-dashboard-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.vimeva-dashboard-kpi {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 24px;
    box-shadow: var(--vimeva-lms-shadow);
    padding: 20px;
}

.vimeva-dashboard-kpi > span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.vimeva-dashboard-kpi strong,
.vimeva-dashboard-kpi em {
    display: block;
}

.vimeva-dashboard-kpi strong {
    color: var(--vimeva-lms-ink);
    font-size: 23px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.03em;
}

.vimeva-dashboard-kpi em {
    margin-top: 6px;
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 750;
}

.vimeva-dashboard-section {
    margin-top: 22px;
}

.vimeva-dashboard-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.vimeva-dashboard-section__head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.025em;
}

.vimeva-dashboard-section__head p {
    margin: 4px 0 0;
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    font-weight: 700;
}

.vimeva-dashboard-section__head a {
    color: var(--vimeva-lms-primary);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.vimeva-dashboard-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.vimeva-dashboard-action {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 22px;
    box-shadow: var(--vimeva-lms-shadow-soft);
    padding: 18px;
    color: var(--vimeva-lms-ink);
    text-decoration: none;
    min-height: 104px;
}

.vimeva-dashboard-action:hover {
    background: #fbf7ff;
    text-decoration: none;
}

.vimeva-dashboard-action span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.vimeva-dashboard-action strong,
.vimeva-dashboard-action em {
    display: block;
}

.vimeva-dashboard-action strong {
    color: var(--vimeva-lms-ink);
    font-size: 13px;
    font-weight: 950;
}

.vimeva-dashboard-action em {
    margin-top: 4px;
    color: var(--vimeva-lms-muted);
    font-style: normal;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 650;
}

.vimeva-dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr) minmax(0, .85fr);
    gap: 20px;
    margin-top: 22px;
}

.vimeva-dashboard-widget {
    background: #fff;
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 24px;
    box-shadow: var(--vimeva-lms-shadow);
    padding: 22px;
}

.vimeva-dashboard-progress {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.vimeva-dashboard-progress__ring {
    width: 108px;
    height: 108px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #fff 0 56%, transparent 57%),
        conic-gradient(var(--vimeva-lms-primary) 0 66%, #eef1fb 66% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vimeva-dashboard-progress__ring span {
    color: var(--vimeva-lms-primary);
    font-size: 22px;
    font-weight: 950;
}

.vimeva-dashboard-progress h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 950;
}

.vimeva-dashboard-progress p {
    margin: 7px 0 14px;
    color: var(--vimeva-lms-muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.vimeva-dashboard-progressbar {
    height: 9px;
    border-radius: 999px;
    background: #edf0fb;
    overflow: hidden;
}

.vimeva-dashboard-progressbar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vimeva-lms-primary), var(--vimeva-lms-brand));
}

.vimeva-dashboard-mini-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
}

.vimeva-dashboard-mini-list div,
.vimeva-dashboard-timeline div,
.vimeva-dashboard-workspace-grid a {
    border: 1px solid var(--vimeva-lms-line);
    border-radius: 18px;
    background: #fbfcff;
    padding: 14px;
}

.vimeva-dashboard-mini-list strong,
.vimeva-dashboard-mini-list span {
    display: block;
}

.vimeva-dashboard-mini-list strong,
.vimeva-dashboard-timeline strong,
.vimeva-dashboard-workspace-grid strong {
    color: var(--vimeva-lms-ink);
    font-size: 13px;
    font-weight: 950;
}

.vimeva-dashboard-mini-list span,
.vimeva-dashboard-timeline em {
    margin-top: 4px;
    color: var(--vimeva-lms-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

.vimeva-dashboard-timeline {
    display: grid;
    gap: 12px;
}

.vimeva-dashboard-timeline div {
    display: grid;
    grid-template-columns: 12px minmax(0,1fr);
    gap: 10px;
    align-items: start;
}

.vimeva-dashboard-timeline span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 4px;
}

.vimeva-dashboard-timeline strong,
.vimeva-dashboard-timeline em {
    grid-column: 2;
}

.vimeva-dashboard-workspace-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
}

.vimeva-dashboard-workspace-grid a {
    min-height: 84px;
    color: var(--vimeva-lms-ink);
    text-decoration: none;
}

.vimeva-dashboard-workspace-grid a:hover {
    background: #fbf7ff;
    text-decoration: none;
}

.vimeva-dashboard-workspace-grid span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    background: var(--vimeva-lms-soft-purple);
    color: var(--vimeva-lms-primary);
    font-weight: 950;
    margin-bottom: 10px;
}

.vimeva-dashboard-legacy-compatible {
    margin-top: 26px;
    padding-top: 8px;
}

.vimeva-dashboard-legacy-compatible .vimeva-dashboard-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 14px;
}

.vimeva-dashboard-legacy-compatible .vimeva-dashboard-section-label h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--vimeva-lms-ink);
    margin: 0;
}

.vimeva-dashboard-legacy-compatible .vimeva-dashboard-section-label span {
    font-size: 12px;
    color: var(--vimeva-lms-muted);
    font-weight: 700;
}

.vimeva-dashboard-kpi .is-purple,
.vimeva-dashboard-action .is-purple,
.vimeva-dashboard-timeline .is-purple { background: #f2eaff; color: #7c2bdc; }
.vimeva-dashboard-kpi .is-blue,
.vimeva-dashboard-action .is-blue,
.vimeva-dashboard-timeline .is-blue { background: #edf4ff; color: #3d7ff2; }
.vimeva-dashboard-kpi .is-green,
.vimeva-dashboard-action .is-green,
.vimeva-dashboard-timeline .is-green { background: #eafbf2; color: #21a86b; }
.vimeva-dashboard-kpi .is-orange,
.vimeva-dashboard-action .is-orange,
.vimeva-dashboard-timeline .is-orange { background: #fff5e8; color: #f28a23; }

@media (max-width: 1399.98px) {
    .vimeva-dashboard-hero {
        grid-template-columns: 1fr;
    }

    .vimeva-dashboard-kpi-grid,
    .vimeva-dashboard-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vimeva-dashboard-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .vimeva-dashboard-hero {
        padding: 22px;
    }

    .vimeva-dashboard-hero h1 {
        font-size: 28px;
    }

    .vimeva-dashboard-kpi-grid,
    .vimeva-dashboard-action-grid,
    .vimeva-dashboard-mini-list,
    .vimeva-dashboard-workspace-grid {
        grid-template-columns: 1fr;
    }

    .vimeva-dashboard-progress {
        grid-template-columns: 1fr;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Native Panel Replacement - 0.3.67
|--------------------------------------------------------------------------
| Higher-end, closer-to-mockup replacement styling.
*/

body.vimeva-native-panel-replacement {
    --vimeva-lms-primary: #8d29d6;
    --vimeva-lms-brand: #b1218f;
    --vimeva-lms-deep: #12163b;
    --vimeva-lms-muted: #6f7ca5;
    --vimeva-lms-line: #e9ecf8;
    --vimeva-lms-bg: #f7f7fd;
    --vimeva-lms-card: #ffffff;
    --vimeva-lms-shadow: 0 28px 80px rgba(24, 30, 70, .08);
    --vimeva-lms-shadow-soft: 0 18px 45px rgba(24, 30, 70, .06);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f7f7fd !important;
}

body.vimeva-native-panel-replacement #panel_app {
    background:
        radial-gradient(circle at 76% 8%, rgba(141,41,214,.09), transparent 28rem),
        linear-gradient(180deg, #ffffff 0, #f9f8ff 190px, #f7f7fd 100%);
}

body.vimeva-native-panel-replacement .panel-header {
    min-height: 86px;
    background: rgba(255,255,255,.92) !important;
    border-bottom: 1px solid #e8ebf8;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 14px 44px rgba(24,30,70,.045);
    backdrop-filter: blur(18px);
}

body.vimeva-native-panel-replacement .panel-header__logo-box {
    width: 320px;
    border-right: 1px solid #edf0fb;
}

body.vimeva-native-panel-replacement .panel-header__contents {
    padding-left: 34px;
    padding-right: 34px;
}

body.vimeva-native-panel-replacement .panel-header__logo img {
    max-height: 48px;
}

body.vimeva-native-panel-replacement .theme-color-toggle,
body.vimeva-native-panel-replacement .panel-header .bg-gray-100 {
    width: 42px !important;
    height: 42px !important;
    border-radius: 16px !important;
    background: #fbfcff !important;
    border: 1px solid #edf0fb;
    box-shadow: 0 10px 30px rgba(24,30,70,.035);
}

body.vimeva-native-panel-replacement .navbar-item {
    min-height: 86px;
    padding-top: 2px;
    color: #52618b !important;
    font-weight: 850;
    letter-spacing: -.01em;
}

body.vimeva-native-panel-replacement .navbar-item:hover,
body.vimeva-native-panel-replacement .navbar-item.active {
    color: var(--vimeva-lms-primary) !important;
}

body.vimeva-native-panel-replacement .panel-sidebar {
    width: 320px;
    background: rgba(255,255,255,.96) !important;
    border-right: 1px solid #edf0fb;
    border-radius: 0 28px 28px 0;
    box-shadow: 18px 0 60px rgba(24,30,70,.045);
}

body.vimeva-native-panel-replacement .panel-sidebar__contents {
    padding-left: 32px;
    padding-right: 32px;
}

body.vimeva-native-panel-replacement .panel-sidebar__user-avatar,
.vimeva-enterprise-avatar {
    width: 112px !important;
    height: 112px !important;
    border-radius: 34px !important;
    padding: 4px;
    background: linear-gradient(135deg, #8d29d6, #b1218f);
    box-shadow: 0 26px 60px rgba(141,41,214,.24);
    position: relative;
    overflow: hidden;
}

body.vimeva-native-panel-replacement .panel-sidebar__user-avatar img,
.vimeva-enterprise-avatar img {
    border-radius: 30px !important;
    border: 4px solid #fff !important;
    object-fit: cover;
}

.vimeva-sidebar-avatar-fallback,
.vimeva-course-library-profile__avatar span {
    display: none;
}

.vimeva-enterprise-avatar.has-fallback .vimeva-sidebar-avatar-fallback {
    display: flex;
    position: absolute;
    inset: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    background: linear-gradient(135deg,#8d29d6,#b1218f);
}

body.vimeva-native-panel-replacement .panel-sidebar h4 {
    font-size: 18px !important;
    font-weight: 950 !important;
    margin-top: 16px !important;
    letter-spacing: -.03em;
}

body.vimeva-native-panel-replacement .panel-sidebar .rounded-10.bg-gray {
    min-width: 260px;
    border-radius: 18px !important;
    border: 1px solid #e9ecf8;
    box-shadow: 0 18px 44px rgba(24,30,70,.045);
}

body.vimeva-native-panel-replacement #sidebarAccordions {
    padding-top: 34px;
}

body.vimeva-native-panel-replacement #sidebarAccordions a,
body.vimeva-native-panel-replacement #sidebarAccordions .sidebar-menu-item {
    min-height: 44px;
    border-radius: 15px !important;
    color: #16204d !important;
    font-size: 14px;
    font-weight: 850;
}

body.vimeva-native-panel-replacement #sidebarAccordions a:hover,
body.vimeva-native-panel-replacement #sidebarAccordions .active,
body.vimeva-native-panel-replacement #sidebarAccordions .router-link-active {
    background: linear-gradient(90deg, rgba(141,41,214,.13), rgba(177,33,143,.08)) !important;
    color: #7421d3 !important;
}

body.vimeva-native-panel-replacement .panel-content {
    width: calc(100% - 320px);
}

body.vimeva-native-panel-replacement .panel-title-and-breadcrumb {
    min-height: 64px;
    margin: 0 0 26px;
    border-radius: 0 0 28px 28px;
    background: rgba(255,255,255,.72);
    border: 1px solid #edf0fb;
    box-shadow: 0 14px 44px rgba(24,30,70,.035);
}

body.vimeva-native-panel-replacement .panel-content__scrollable {
    padding: 34px 52px 64px !important;
}

body.vimeva-native-panel-replacement .dashboard-body,
.vimeva-native-panel-page,
.vimeva-lms-settings-mockup-page {
    max-width: 1520px;
    margin: 0 auto 64px;
}

/* Remove old stacked RocketLMS detail sections on native replacement pages. */
.vimeva-dashboard-legacy-compatible {
    display: none !important;
}

/* Enterprise hero/cards closer to the reference */
body.vimeva-native-panel-replacement .vimeva-dashboard-hero,
.vimeva-course-library-hero {
    border-radius: 32px;
    min-height: 286px;
    padding: 42px;
    background:
        radial-gradient(circle at 86% 8%, rgba(255,255,255,.24), transparent 18rem),
        radial-gradient(circle at 10% 92%, rgba(255,255,255,.15), transparent 16rem),
        linear-gradient(135deg, #8d29d6 0%, #b1218f 48%, #5a2bd6 100%);
    box-shadow: 0 32px 90px rgba(90,43,214,.22);
}

body.vimeva-native-panel-replacement .vimeva-dashboard-hero h1,
.vimeva-course-library-hero h1 {
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 950;
    letter-spacing: -.055em;
}

.vimeva-enterprise-eyebrow,
body.vimeva-native-panel-replacement .vimeva-dashboard-eyebrow {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.vimeva-native-panel-replacement .vimeva-dashboard-profile-card,
.vimeva-course-library-hero__panel {
    border-radius: 30px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
}

body.vimeva-native-panel-replacement .vimeva-dashboard-kpi,
body.vimeva-native-panel-replacement .vimeva-dashboard-action,
body.vimeva-native-panel-replacement .vimeva-dashboard-widget,
body.vimeva-native-panel-replacement .vimeva-settings-widget,
body.vimeva-native-panel-replacement .vimeva-settings-integrations,
.vimeva-native-course-card,
.vimeva-course-library-stats article,
.vimeva-course-library-toolbar,
.vimeva-native-empty-state {
    border-radius: 28px;
    border: 1px solid #e9ecf8;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 72px rgba(24,30,70,.065);
}

body.vimeva-native-panel-replacement .vimeva-dashboard-action,
body.vimeva-native-panel-replacement .vimeva-settings-widget,
.vimeva-native-course-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.vimeva-native-panel-replacement .vimeva-dashboard-action:hover,
body.vimeva-native-panel-replacement .vimeva-settings-widget:hover,
.vimeva-native-course-card:hover {
    transform: translateY(-3px);
    border-color: rgba(141,41,214,.22);
    box-shadow: 0 30px 90px rgba(24,30,70,.09);
}

/* Settings native edit workspace */
.vimeva-native-settings-edit-card {
    border-radius: 28px !important;
    box-shadow: 0 24px 72px rgba(24,30,70,.065) !important;
}

.vimeva-native-settings-edit-card .panel-bottom-bar {
    position: static !important;
    border-top: 1px solid #e9ecf8;
    border-radius: 0 0 28px 28px;
    box-shadow: none !important;
    margin: 22px -22px -22px;
}

/* Native My Courses */
.vimeva-my-courses-native {
    max-width: 1520px;
    margin: 0 auto 64px;
}

.vimeva-course-library-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 30px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.vimeva-course-library-hero__copy,
.vimeva-course-library-hero__panel {
    position: relative;
    z-index: 1;
}

.vimeva-course-library-hero p {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    font-weight: 700;
    max-width: 680px;
}

.vimeva-course-library-hero__actions,
.vimeva-dashboard-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.vimeva-native-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none !important;
    border: 1px solid transparent;
}

.vimeva-native-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg,#8d29d6,#b1218f);
    box-shadow: 0 14px 32px rgba(141,41,214,.22);
}

.vimeva-native-btn--light {
    background: #fff;
    color: #7c2bdc !important;
}

.vimeva-native-btn--glass {
    background: rgba(255,255,255,.12);
    color: #fff !important;
    border-color: rgba(255,255,255,.24);
}

.vimeva-course-library-profile {
    min-height: 164px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
}

.vimeva-course-library-profile__avatar {
    width: 96px;
    height: 96px;
    border-radius: 30px;
    padding: 4px;
    background: rgba(255,255,255,.16);
    position: relative;
    flex: 0 0 96px;
}

.vimeva-course-library-profile__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: cover;
    border: 4px solid #fff;
}

.vimeva-course-library-profile__avatar.has-fallback span {
    display: flex;
    position: absolute;
    inset: 4px;
    border-radius: 26px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 950;
    background: linear-gradient(135deg,#8d29d6,#b1218f);
}

.vimeva-course-library-profile strong,
.vimeva-course-library-profile em,
.vimeva-course-library-profile b {
    display: block;
}

.vimeva-course-library-profile strong {
    color: #fff;
    font-size: 20px;
    font-weight: 950;
}

.vimeva-course-library-profile em {
    margin-top: 5px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-style: normal;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.vimeva-course-library-profile b {
    width: fit-content;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.vimeva-course-library-stats {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 20px;
    margin-top: 24px;
}

.vimeva-course-library-stats article {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
}

.vimeva-course-library-stats span {
    width: 50px;
    height: 50px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.vimeva-course-library-stats strong,
.vimeva-course-library-stats em {
    display: block;
}

.vimeva-course-library-stats strong {
    color: #12163b;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -.035em;
}

.vimeva-course-library-stats em {
    margin-top: 5px;
    color: #6f7ca5;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.vimeva-course-library-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 22px 24px;
}

.vimeva-course-library-toolbar h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -.035em;
}

.vimeva-course-library-toolbar p {
    margin: 5px 0 0;
    color: #6f7ca5;
    font-size: 13px;
    font-weight: 750;
}

.vimeva-course-library-search {
    width: min(460px, 100%);
    display: grid;
    grid-template-columns: 38px minmax(0,1fr) auto;
    align-items: center;
    min-height: 48px;
    padding: 4px;
    border: 1px solid #e9ecf8;
    border-radius: 17px;
    background: #fbfcff;
}

.vimeva-course-library-search span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c2bdc;
    font-weight: 950;
}

.vimeva-course-library-search input {
    border: 0 !important;
    background: transparent !important;
    min-height: 38px;
    outline: none;
    box-shadow: none !important;
    color: #12163b;
    font-weight: 750;
}

.vimeva-course-library-search button {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg,#8d29d6,#b1218f);
    font-weight: 900;
}

.vimeva-course-library-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
    margin-top: 24px;
}

.vimeva-native-course-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 230px minmax(0,1fr);
    min-height: 250px;
}

.vimeva-native-course-card__image {
    position: relative;
    min-height: 250px;
    background: #eef1fb;
    overflow: hidden;
    text-decoration: none;
}

.vimeva-native-course-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vimeva-native-course-card__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
}

.vimeva-native-course-card__type {
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(18,22,59,.72);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.vimeva-native-course-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vimeva-native-course-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.vimeva-native-course-card__title {
    color: #12163b !important;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.02em;
    text-decoration: none !important;
}

.vimeva-native-course-card__meta {
    display: block;
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    background: #fbfcff;
    border: 1px solid #edf0fb;
    text-decoration: none !important;
}

.vimeva-native-course-card__progress {
    margin-top: 14px;
}

.vimeva-native-course-card__footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vimeva-native-course-card__price strong,
.vimeva-native-course-card__status {
    color: #7c2bdc;
    font-size: 15px;
    font-weight: 950;
}

.vimeva-native-course-card__price span {
    margin-left: 8px;
    color: #9aa4c3;
    font-size: 13px;
    text-decoration: line-through;
    font-weight: 700;
}

.vimeva-native-empty-state {
    margin-top: 24px;
    padding: 54px 28px;
    text-align: center;
}

.vimeva-native-empty-state__icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2eaff;
    color: #7c2bdc;
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 18px;
}

.vimeva-native-empty-state h3 {
    font-size: 22px;
    font-weight: 950;
    margin: 0;
}

.vimeva-native-empty-state p {
    color: #6f7ca5;
    font-weight: 750;
    margin: 8px auto 18px;
    max-width: 520px;
}

.is-purple { background: #f2eaff; color: #7c2bdc; }
.is-blue { background: #edf4ff; color: #3d7ff2; }
.is-green { background: #eafbf2; color: #21a86b; }
.is-orange { background: #fff5e8; color: #f28a23; }

@media (max-width: 1399.98px) {
    body.vimeva-native-panel-replacement .panel-header__logo-box,
    body.vimeva-native-panel-replacement .panel-sidebar {
        width: 290px;
    }

    body.vimeva-native-panel-replacement .panel-content {
        width: calc(100% - 290px);
    }

    .vimeva-course-library-hero,
    body.vimeva-native-panel-replacement .vimeva-dashboard-hero {
        grid-template-columns: 1fr;
    }

    .vimeva-course-library-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    body.vimeva-native-panel-replacement .panel-content {
        width: 100%;
    }

    .vimeva-course-library-stats {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .vimeva-course-library-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 767.98px) {
    body.vimeva-native-panel-replacement .panel-content__scrollable {
        padding: 22px 16px 44px !important;
    }

    .vimeva-course-library-stats,
    .vimeva-course-library-grid {
        grid-template-columns: 1fr;
    }

    .vimeva-native-course-card {
        grid-template-columns: 1fr;
    }

    .vimeva-native-course-card__image {
        min-height: 210px;
    }
}


/* 0.3.67 audit/gate marker + enterprise topbar selector */
body.vimeva-native-panel-replacement .vimeva-enterprise-topbar {
    background: rgba(255,255,255,.92) !important;
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Visual Polish & Interaction Pass - 0.3.67
|--------------------------------------------------------------------------
| Premium interaction layer. No runtime/data behavior is changed.
*/

body.vimeva-visual-polish-pass {
    --vimeva-premium-ink: #101535;
    --vimeva-premium-subtle: #68749a;
    --vimeva-premium-line: #e8ebf6;
    --vimeva-premium-panel: rgba(255,255,255,.94);
    --vimeva-premium-glass: rgba(255,255,255,.16);
    --vimeva-premium-shadow: 0 26px 86px rgba(18, 24, 60, .075);
    --vimeva-premium-shadow-hover: 0 34px 110px rgba(18, 24, 60, .115);
    --vimeva-premium-focus: 0 0 0 4px rgba(141, 41, 214, .16);
    letter-spacing: -.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.vimeva-visual-polish-pass .panel-content__scrollable {
    scroll-behavior: smooth;
}

body.vimeva-visual-polish-pass .panel-title-and-breadcrumb {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding-left: 28px !important;
    padding-right: 28px !important;
    color: var(--vimeva-premium-ink);
    font-weight: 950;
}

body.vimeva-visual-polish-pass .panel-header,
body.vimeva-visual-polish-pass .panel-sidebar,
body.vimeva-visual-polish-pass .panel-title-and-breadcrumb {
    backdrop-filter: saturate(1.2) blur(18px);
}

body.vimeva-visual-polish-pass .navbar-item,
body.vimeva-visual-polish-pass #sidebarAccordions a,
body.vimeva-visual-polish-pass .vimeva-settings-tab,
body.vimeva-visual-polish-pass .vimeva-native-btn,
body.vimeva-visual-polish-pass .vimeva-dashboard-action,
body.vimeva-visual-polish-pass .vimeva-settings-mini-btn,
body.vimeva-visual-polish-pass .vimeva-native-course-card__title {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}

body.vimeva-visual-polish-pass a:focus-visible,
body.vimeva-visual-polish-pass button:focus-visible,
body.vimeva-visual-polish-pass input:focus-visible,
body.vimeva-visual-polish-pass select:focus-visible,
body.vimeva-visual-polish-pass textarea:focus-visible,
body.vimeva-visual-polish-pass [tabindex]:focus-visible {
    outline: none !important;
    box-shadow: var(--vimeva-premium-focus) !important;
}

body.vimeva-visual-polish-pass .navbar-item:hover,
body.vimeva-visual-polish-pass .vimeva-premium-interaction:hover {
    transform: translateY(-1px);
}

body.vimeva-visual-polish-pass .vimeva-dashboard-action:hover,
body.vimeva-visual-polish-pass .vimeva-settings-mini-btn:hover,
body.vimeva-visual-polish-pass .vimeva-native-btn:hover {
    box-shadow: var(--vimeva-premium-shadow-hover);
}

body.vimeva-visual-polish-pass .panel-sidebar h4,
body.vimeva-visual-polish-pass .vimeva-dashboard-hero h1,
body.vimeva-visual-polish-pass .vimeva-course-library-hero h1,
body.vimeva-visual-polish-pass .vimeva-lms-settings-hero h1,
body.vimeva-visual-polish-pass .vimeva-settings-widget__head h3,
body.vimeva-visual-polish-pass .vimeva-dashboard-section__head h2,
body.vimeva-visual-polish-pass .vimeva-course-library-toolbar h2 {
    color: var(--vimeva-premium-ink);
    letter-spacing: -.045em;
}

body.vimeva-visual-polish-pass .vimeva-dashboard-hero h1,
body.vimeva-visual-polish-pass .vimeva-course-library-hero h1,
body.vimeva-visual-polish-pass .vimeva-dashboard-profile-card h3,
body.vimeva-visual-polish-pass .vimeva-course-library-profile strong {
    color: #fff !important;
}

body.vimeva-visual-polish-pass .vimeva-settings-tab__icon,
body.vimeva-visual-polish-pass .vimeva-settings-row__icon,
body.vimeva-visual-polish-pass .vimeva-dashboard-kpi > span,
body.vimeva-visual-polish-pass .vimeva-dashboard-action span,
body.vimeva-visual-polish-pass .vimeva-course-library-stats span,
body.vimeva-visual-polish-pass .vimeva-dashboard-workspace-grid span {
    border: 1px solid rgba(255,255,255,.74);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.62), 0 12px 26px rgba(18,24,60,.055);
}

body.vimeva-visual-polish-pass .vimeva-settings-tab__icon {
    font-size: 0;
}

body.vimeva-visual-polish-pass .vimeva-settings-tab__icon:before {
    content: "";
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 3px;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(124,43,220,.09);
}

body.vimeva-visual-polish-pass .vimeva-settings-tab:nth-child(2) .vimeva-settings-tab__icon:before,
body.vimeva-visual-polish-pass .vimeva-settings-tab:nth-child(5) .vimeva-settings-tab__icon:before {
    border-radius: 999px;
}

body.vimeva-visual-polish-pass .vimeva-settings-tab:nth-child(3) .vimeva-settings-tab__icon:before,
body.vimeva-visual-polish-pass .vimeva-settings-tab:nth-child(8) .vimeva-settings-tab__icon:before {
    transform: rotate(45deg);
}

body.vimeva-visual-polish-pass .vimeva-dashboard-kpi,
body.vimeva-visual-polish-pass .vimeva-dashboard-widget,
body.vimeva-visual-polish-pass .vimeva-settings-widget,
body.vimeva-visual-polish-pass .vimeva-settings-integrations,
body.vimeva-visual-polish-pass .vimeva-course-library-toolbar,
body.vimeva-visual-polish-pass .vimeva-course-library-stats article,
body.vimeva-visual-polish-pass .vimeva-native-course-card,
body.vimeva-visual-polish-pass .vimeva-native-empty-state {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)),
        radial-gradient(circle at 100% 0, rgba(141,41,214,.045), transparent 14rem);
    box-shadow: var(--vimeva-premium-shadow);
}

body.vimeva-visual-polish-pass .vimeva-dashboard-kpi:hover,
body.vimeva-visual-polish-pass .vimeva-dashboard-widget:hover,
body.vimeva-visual-polish-pass .vimeva-settings-widget:hover,
body.vimeva-visual-polish-pass .vimeva-course-library-stats article:hover,
body.vimeva-visual-polish-pass .vimeva-native-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vimeva-premium-shadow-hover);
}

body.vimeva-visual-polish-pass .vimeva-dashboard-hero,
body.vimeva-visual-polish-pass .vimeva-course-library-hero {
    isolation: isolate;
}

body.vimeva-visual-polish-pass .vimeva-dashboard-hero:before,
body.vimeva-visual-polish-pass .vimeva-course-library-hero:before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.20);
    pointer-events: none;
    z-index: 2;
}

body.vimeva-visual-polish-pass .vimeva-dashboard-hero:after,
body.vimeva-visual-polish-pass .vimeva-course-library-hero:after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -210px;
    top: -230px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    z-index: 0;
}

body.vimeva-visual-polish-pass .vimeva-dashboard-hero__content,
body.vimeva-visual-polish-pass .vimeva-dashboard-profile-card,
body.vimeva-visual-polish-pass .vimeva-course-library-hero__copy,
body.vimeva-visual-polish-pass .vimeva-course-library-hero__panel {
    z-index: 3;
}

body.vimeva-visual-polish-pass .vimeva-native-course-card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,21,53,0) 42%, rgba(16,21,53,.46) 100%);
    pointer-events: none;
}

body.vimeva-visual-polish-pass .vimeva-native-course-card__type {
    z-index: 2;
}

body.vimeva-visual-polish-pass .vimeva-native-course-card__meta {
    color: var(--vimeva-premium-subtle);
}

body.vimeva-visual-polish-pass .vimeva-native-course-card__footer {
    border-top: 1px solid var(--vimeva-premium-line);
}

body.vimeva-visual-polish-pass .vimeva-course-library-search {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 36px rgba(18,24,60,.045);
}

body.vimeva-visual-polish-pass .vimeva-course-library-search input::placeholder {
    color: #9aa5c3;
}

body.vimeva-visual-polish-pass .vimeva-native-empty-state {
    border-style: dashed;
    border-width: 1.5px;
}

body.vimeva-visual-polish-pass .vimeva-settings-toggle-list b {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 10px 22px rgba(141,41,214,.22);
}

body.vimeva-visual-polish-pass .panel-bottom-bar {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(16px);
}

@media (prefers-reduced-motion: reduce) {
    body.vimeva-visual-polish-pass *,
    body.vimeva-visual-polish-pass *:before,
    body.vimeva-visual-polish-pass *:after {
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Navigation & Clickability Pass - 0.3.67
|--------------------------------------------------------------------------
| Visible native cards/buttons/tabs are treated as real clickable UI.
*/

body.vimeva-navigation-clickability-pass [data-vimeva-clickable="true"] {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(141,41,214,.12);
}

body.vimeva-navigation-clickability-pass [data-vimeva-clickable="true"]:hover {
    text-decoration: none !important;
}

body.vimeva-navigation-clickability-pass [data-vimeva-clickable="true"]:active {
    transform: translateY(0) scale(.992);
}

body.vimeva-navigation-clickability-pass .vimeva-dashboard-action[data-vimeva-clickable="true"],
body.vimeva-navigation-clickability-pass .vimeva-settings-integration[data-vimeva-clickable="true"],
body.vimeva-navigation-clickability-pass .vimeva-native-course-card__image[data-vimeva-clickable="true"],
body.vimeva-navigation-clickability-pass .vimeva-native-course-card__meta[data-vimeva-clickable="true"] {
    position: relative;
}

body.vimeva-navigation-clickability-pass .vimeva-dashboard-action[data-vimeva-clickable="true"]:after,
body.vimeva-navigation-clickability-pass .vimeva-settings-integration[data-vimeva-clickable="true"]:after {
    content: "›";
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c2bdc;
    background: rgba(124,43,220,.08);
    font-size: 20px;
    font-weight: 950;
    position: absolute;
    right: 16px;
    top: 16px;
    transition: transform .18s ease, background .18s ease;
}

body.vimeva-navigation-clickability-pass .vimeva-dashboard-action[data-vimeva-clickable="true"]:hover:after,
body.vimeva-navigation-clickability-pass .vimeva-settings-integration[data-vimeva-clickable="true"]:hover:after {
    transform: translateX(2px);
    background: rgba(124,43,220,.13);
}

body.vimeva-navigation-clickability-pass .vimeva-native-btn[data-vimeva-clickable="true"]:after,
body.vimeva-navigation-clickability-pass .vimeva-dashboard-btn[data-vimeva-clickable="true"]:after {
    content: "→";
    margin-left: 8px;
    font-weight: 950;
    opacity: .82;
}

body.vimeva-navigation-clickability-pass .vimeva-settings-tab[data-vimeva-clickable="true"] {
    user-select: none;
}

body.vimeva-navigation-clickability-pass .vimeva-native-course-card__title[data-vimeva-clickable="true"]:hover {
    color: #7c2bdc !important;
}

body.vimeva-navigation-clickability-pass [data-vimeva-clickable="true"][aria-disabled="true"],
body.vimeva-navigation-clickability-pass .vimeva-clickable-disabled {
    opacity: .48;
    pointer-events: none;
    cursor: not-allowed;
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Settings Context Navigation - 0.3.67
|--------------------------------------------------------------------------
| Keeps the settings navigation visible on billing/account pages.
*/

.vimeva-settings-context-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding: 4px 4px 16px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--vimeva-lms-line, #e9ecf8);
}

.vimeva-settings-context-nav .vimeva-settings-tab {
    min-height: 42px;
    flex: 0 0 auto;
}

.vimeva-settings-context-nav .vimeva-settings-tab.is-active {
    color: var(--vimeva-lms-primary, #8d29d6) !important;
}

.vimeva-settings-context-nav .vimeva-settings-tab.is-active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -17px;
    height: 3px;
    border-radius: 999px;
    background: var(--vimeva-lms-primary, #8d29d6);
}

body.vimeva-navigation-clickability-pass .vimeva-settings-context-nav [data-vimeva-clickable="true"] {
    cursor: pointer;
}

@media (max-width: 767.98px) {
    .vimeva-settings-context-nav {
        gap: 18px;
        margin-left: -2px;
        margin-right: -2px;
        padding-bottom: 14px;
    }
}


/* 0.3.67 settings runtime polish */
.vimeva-settings-context-nav + .row,
.vimeva-settings-context-nav + .bg-white,
.vimeva-settings-context-nav + form,
.vimeva-settings-context-nav + .card-with-dashed-mask {
    margin-top: 22px;
}

.vimeva-lms-settings-form-card .custom-tabs-items-scrollable-mobile.d-none {
    display: none !important;
}

.vimeva-settings-context-nav .vimeva-settings-tab[data-vimeva-settings-tab="facturatie"].is-active {
    color: var(--vimeva-lms-primary, #8d29d6) !important;
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Premium Visual System Refinement - 0.3.67
|--------------------------------------------------------------------------
| Final global visual layer for the student/instructor shell.
| This layer preserves all menus and routes, but normalizes layout,
| spacing, overflow, hierarchy, cards, topbar and sidebar presentation.
*/

body.vimeva-premium-visual-system {
    --v47-bg: #f8f7fc;
    --v47-card: #ffffff;
    --v47-card-soft: rgba(255, 255, 255, .92);
    --v47-ink: #111638;
    --v47-text: #273154;
    --v47-muted: #7480a4;
    --v47-line: #e8eaf5;
    --v47-line-strong: #dde1f0;
    --v47-primary: #7c22de;
    --v47-primary-2: #b21b91;
    --v47-primary-soft: #f3eaff;
    --v47-success: #21bf79;
    --v47-warning: #f49b32;
    --v47-danger: #e94f7a;
    --v47-blue: #4b83f1;
    --v47-shadow: 0 22px 70px rgba(23, 30, 70, .075);
    --v47-shadow-hover: 0 34px 110px rgba(23, 30, 70, .12);
    --v47-radius-xl: 28px;
    --v47-radius-lg: 22px;
    --v47-radius-md: 16px;
    --v47-sidebar: 300px;
    --v47-topbar: 82px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    background: var(--v47-bg) !important;
    color: var(--v47-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.vimeva-premium-visual-system *,
body.vimeva-premium-visual-system *:before,
body.vimeva-premium-visual-system *:after {
    box-sizing: border-box;
}

body.vimeva-premium-visual-system #panel_app {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 0%, rgba(124,34,222,.08), transparent 30rem),
        radial-gradient(circle at 88% 8%, rgba(178,27,145,.07), transparent 32rem),
        linear-gradient(180deg, #fff 0, #fbfaff 210px, var(--v47-bg) 100%);
    overflow-x: hidden;
}

body.vimeva-premium-visual-system .panel-header {
    min-height: var(--v47-topbar) !important;
    height: var(--v47-topbar);
    background: rgba(255,255,255,.86) !important;
    border-bottom: 1px solid var(--v47-line) !important;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 14px 52px rgba(23,30,70,.055);
    backdrop-filter: saturate(1.15) blur(18px);
    z-index: 80;
}

body.vimeva-premium-visual-system .panel-header__logo-box {
    width: var(--v47-sidebar) !important;
    min-width: var(--v47-sidebar) !important;
    height: var(--v47-topbar);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--v47-line);
}

body.vimeva-premium-visual-system .panel-header__logo {
    min-width: 0;
}

body.vimeva-premium-visual-system .panel-header__logo img {
    max-height: 46px !important;
    width: auto;
    object-fit: contain;
}

body.vimeva-premium-visual-system .panel-header__contents {
    height: var(--v47-topbar) !important;
    min-width: 0;
    flex: 1 1 auto;
    padding-left: 34px !important;
    padding-right: 34px !important;
    border-bottom: 0 !important;
}

body.vimeva-premium-visual-system .panel-header__contents > .d-flex:first-child,
body.vimeva-premium-visual-system .panel-header__contents > .d-flex:last-child {
    min-width: 0;
}

body.vimeva-premium-visual-system .navbar-item {
    min-height: 46px !important;
    height: 46px;
    padding: 0 16px !important;
    margin-right: 10px !important;
    border-radius: 15px;
    color: #354066 !important;
    font-weight: 850 !important;
    letter-spacing: -.015em;
    white-space: nowrap;
}

body.vimeva-premium-visual-system .navbar-item:hover,
body.vimeva-premium-visual-system .navbar-item.active {
    color: var(--v47-primary) !important;
    background: rgba(124,34,222,.08);
}

body.vimeva-premium-visual-system .navbar-item:after {
    display: none !important;
}

body.vimeva-premium-visual-system .theme-color-toggle,
body.vimeva-premium-visual-system .js-view-cart-drawer,
body.vimeva-premium-visual-system .js-show-ai-content-drawer,
body.vimeva-premium-visual-system .panel-header .bg-gray-100 {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.9) !important;
    border: 1px solid var(--v47-line) !important;
    box-shadow: 0 12px 32px rgba(23,30,70,.055);
}

body.vimeva-premium-visual-system .panel-header__contents-with-line {
    gap: 10px !important;
    margin-right: 18px !important;
    padding-right: 18px;
    border-right: 1px solid var(--v47-line);
}

body.vimeva-premium-visual-system .navbar-auth-user {
    max-width: 230px;
    min-width: 0;
    position: relative;
}

body.vimeva-premium-visual-system .navbar-auth-user > .d-flex {
    min-width: 0;
}

body.vimeva-premium-visual-system .navbar-auth-user__info {
    max-width: 124px;
    color: var(--v47-ink) !important;
    font-weight: 900 !important;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.vimeva-premium-visual-system .navbar-auth-user .font-12 {
    max-width: 124px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.vimeva-premium-visual-system .navbar-auth-user__avatar,
body.vimeva-premium-visual-system .vimeva-header-avatar {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    padding: 2px;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--v47-primary), var(--v47-primary-2));
    box-shadow: 0 14px 30px rgba(124,34,222,.18);
    overflow: hidden;
    position: relative;
}

body.vimeva-premium-visual-system .navbar-auth-user__avatar img,
body.vimeva-premium-visual-system .vimeva-header-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 999px !important;
    border: 2px solid #fff;
    object-fit: cover;
}

body.vimeva-premium-visual-system .vimeva-header-avatar-fallback,
body.vimeva-premium-visual-system .vimeva-sidebar-avatar-fallback {
    display: none;
}

body.vimeva-premium-visual-system .vimeva-header-avatar.has-fallback .vimeva-header-avatar-fallback {
    display: flex;
    position: absolute;
    inset: 2px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    font-size: 18px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--v47-primary), var(--v47-primary-2));
}

body.vimeva-premium-visual-system .panel-sidebar {
    width: var(--v47-sidebar) !important;
    min-width: var(--v47-sidebar) !important;
    background: rgba(255,255,255,.94) !important;
    border-right: 1px solid var(--v47-line) !important;
    border-radius: 0 28px 28px 0;
    box-shadow: 18px 0 70px rgba(23,30,70,.055);
    overflow: hidden;
    z-index: 70;
}

body.vimeva-premium-visual-system .panel-sidebar__contents {
    background:
        radial-gradient(circle at 82% 4%, rgba(124,34,222,.08), transparent 14rem),
        rgba(255,255,255,.96) !important;
    padding: 22px 22px 28px !important;
    overflow-x: hidden;
}

body.vimeva-premium-visual-system .panel-sidebar__user-avatar,
body.vimeva-premium-visual-system .vimeva-enterprise-avatar {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px;
    border-radius: 30px !important;
    padding: 4px;
    background: linear-gradient(135deg, var(--v47-primary), var(--v47-primary-2));
    box-shadow: 0 22px 52px rgba(124,34,222,.23);
    overflow: hidden;
}

body.vimeva-premium-visual-system .panel-sidebar__user-avatar img,
body.vimeva-premium-visual-system .vimeva-enterprise-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 26px !important;
    border: 4px solid #fff !important;
    object-fit: cover;
}

body.vimeva-premium-visual-system .vimeva-enterprise-avatar.has-fallback .vimeva-sidebar-avatar-fallback {
    display: flex;
    position: absolute;
    inset: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    color: #fff;
    font-size: 42px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--v47-primary), var(--v47-primary-2));
}

body.vimeva-premium-visual-system .panel-sidebar h4 {
    max-width: 230px;
    color: var(--v47-ink) !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.vimeva-premium-visual-system .panel-sidebar .rounded-10.bg-gray {
    width: 100%;
    min-height: 58px;
    border-radius: 18px !important;
    background: rgba(255,255,255,.86) !important;
    border: 1px solid var(--v47-line);
    box-shadow: 0 14px 36px rgba(23,30,70,.045);
}

body.vimeva-premium-visual-system #sidebarAccordions {
    padding-top: 22px !important;
    padding-bottom: 120px !important;
}

body.vimeva-premium-visual-system .panel-sidebar__item-spacing {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

body.vimeva-premium-visual-system .panel-sidebar__item-spacing.text-uppercase,
body.vimeva-premium-visual-system #sidebarAccordions > div > span {
    color: #a3acc4 !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .055em;
    margin-bottom: 8px !important;
}

body.vimeva-premium-visual-system .panel-sidebar__menu,
body.vimeva-premium-visual-system .panel-sidebar__menu-item {
    min-height: 44px;
    border-radius: 15px !important;
    color: #323c62 !important;
    font-weight: 850 !important;
    margin-bottom: 4px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

body.vimeva-premium-visual-system .panel-sidebar__menu:hover,
body.vimeva-premium-visual-system .panel-sidebar__menu-item:hover {
    color: var(--v47-primary) !important;
    background: rgba(124,34,222,.07) !important;
    transform: translateX(2px);
}

body.vimeva-premium-visual-system .panel-sidebar__menu.sidenav-item-active,
body.vimeva-premium-visual-system .panel-sidebar__menu-item.text-primary {
    color: var(--v47-primary) !important;
    background: linear-gradient(90deg, rgba(124,34,222,.13), rgba(178,27,145,.06)) !important;
    box-shadow: inset 3px 0 0 var(--v47-primary);
}

body.vimeva-premium-visual-system .panel-sidebar__menu .icons,
body.vimeva-premium-visual-system .panel-sidebar__menu svg {
    width: 21px !important;
    height: 21px !important;
}

body.vimeva-premium-visual-system .panel-content {
    width: calc(100% - var(--v47-sidebar)) !important;
    max-width: calc(100% - var(--v47-sidebar)) !important;
    min-width: 0;
}

body.vimeva-premium-visual-system .panel-content__scrollable {
    padding: 30px clamp(24px, 3vw, 54px) 72px !important;
    overflow-x: hidden !important;
}

body.vimeva-premium-visual-system .panel-title-and-breadcrumb {
    min-height: 58px !important;
    margin: 0 0 28px !important;
    padding: 0 30px !important;
    border: 1px solid var(--v47-line);
    border-radius: 0 0 26px 26px !important;
    background: rgba(255,255,255,.78) !important;
    box-shadow: 0 12px 34px rgba(23,30,70,.035);
    color: var(--v47-ink);
    font-size: 17px;
    font-weight: 950;
    backdrop-filter: blur(14px);
}

body.vimeva-premium-visual-system .vimeva-dashboard-mockup,
body.vimeva-premium-visual-system .vimeva-lms-settings-mockup-page,
body.vimeva-premium-visual-system .vimeva-my-courses-native,
body.vimeva-premium-visual-system .vimeva-native-panel-page {
    width: 100%;
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
}

body.vimeva-premium-visual-system .vimeva-dashboard-hero,
body.vimeva-premium-visual-system .vimeva-course-library-hero {
    min-height: 260px !important;
    border-radius: 30px !important;
    padding: clamp(28px, 3vw, 44px) !important;
    overflow: hidden;
    box-shadow: 0 32px 95px rgba(97,39,197,.20);
}

body.vimeva-premium-visual-system .vimeva-dashboard-hero h1,
body.vimeva-premium-visual-system .vimeva-course-library-hero h1 {
    max-width: 720px;
    font-size: clamp(32px, 3.2vw, 50px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.06em !important;
}

body.vimeva-premium-visual-system .vimeva-dashboard-hero p,
body.vimeva-premium-visual-system .vimeva-course-library-hero p {
    max-width: 660px;
    color: rgba(255,255,255,.82) !important;
    font-size: 15px !important;
    line-height: 1.6;
    font-weight: 750 !important;
}

body.vimeva-premium-visual-system .vimeva-dashboard-profile-card,
body.vimeva-premium-visual-system .vimeva-course-library-hero__panel {
    max-width: 390px;
    border-radius: 28px !important;
    background: rgba(255,255,255,.17) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

body.vimeva-premium-visual-system .vimeva-dashboard-kpis,
body.vimeva-premium-visual-system .vimeva-course-library-stats {
    gap: 20px !important;
    margin-top: 24px !important;
}

body.vimeva-premium-visual-system .vimeva-dashboard-kpi,
body.vimeva-premium-visual-system .vimeva-course-library-stats article,
body.vimeva-premium-visual-system .vimeva-dashboard-action,
body.vimeva-premium-visual-system .vimeva-dashboard-widget,
body.vimeva-premium-visual-system .vimeva-settings-widget,
body.vimeva-premium-visual-system .vimeva-settings-integrations,
body.vimeva-premium-visual-system .vimeva-course-library-toolbar,
body.vimeva-premium-visual-system .vimeva-native-course-card,
body.vimeva-premium-visual-system .vimeva-native-empty-state,
body.vimeva-premium-visual-system .vimeva-native-settings-edit-card,
body.vimeva-premium-visual-system .bg-white,
body.vimeva-premium-visual-system .card-with-dashed-mask {
    border: 1px solid var(--v47-line) !important;
    border-radius: var(--v47-radius-xl) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)) !important;
    box-shadow: var(--v47-shadow) !important;
}

body.vimeva-premium-visual-system .vimeva-dashboard-kpi:hover,
body.vimeva-premium-visual-system .vimeva-course-library-stats article:hover,
body.vimeva-premium-visual-system .vimeva-dashboard-action:hover,
body.vimeva-premium-visual-system .vimeva-settings-widget:hover,
body.vimeva-premium-visual-system .vimeva-native-course-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124,34,222,.22) !important;
    box-shadow: var(--v47-shadow-hover) !important;
}

body.vimeva-premium-visual-system .vimeva-settings-context-nav {
    display: flex !important;
    align-items: center;
    gap: 16px !important;
    width: 100%;
    min-width: 0;
    padding: 8px 4px 18px !important;
    margin: 0 0 26px !important;
    overflow-x: auto;
    border-bottom: 1px solid var(--v47-line) !important;
    scrollbar-width: thin;
}

body.vimeva-premium-visual-system .vimeva-settings-context-nav .vimeva-settings-tab {
    height: 44px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 15px !important;
    white-space: nowrap;
    color: #374166 !important;
    font-weight: 900;
}

body.vimeva-premium-visual-system .vimeva-settings-context-nav .vimeva-settings-tab:hover,
body.vimeva-premium-visual-system .vimeva-settings-context-nav .vimeva-settings-tab.is-active {
    color: var(--v47-primary) !important;
    background: rgba(124,34,222,.08) !important;
}

body.vimeva-premium-visual-system .vimeva-settings-context-nav .vimeva-settings-tab.is-active:after {
    bottom: -19px !important;
    height: 3px !important;
}

body.vimeva-premium-visual-system .vimeva-settings-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: start;
}

body.vimeva-premium-visual-system .vimeva-settings-widget,
body.vimeva-premium-visual-system .vimeva-settings-integrations {
    min-width: 0;
    overflow: hidden;
}

body.vimeva-premium-visual-system .vimeva-settings-widget__head {
    gap: 16px;
}

body.vimeva-premium-visual-system .vimeva-settings-widget__head h3,
body.vimeva-premium-visual-system .vimeva-course-library-toolbar h2,
body.vimeva-premium-visual-system .vimeva-dashboard-section__head h2 {
    color: var(--v47-ink) !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    letter-spacing: -.045em !important;
}

body.vimeva-premium-visual-system .vimeva-settings-widget__head p,
body.vimeva-premium-visual-system .vimeva-settings-row small,
body.vimeva-premium-visual-system .vimeva-course-library-toolbar p {
    color: var(--v47-muted) !important;
    font-weight: 700;
}

body.vimeva-premium-visual-system .vimeva-course-library-toolbar {
    min-height: 82px;
    padding: 18px 22px !important;
}

body.vimeva-premium-visual-system .vimeva-course-library-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch;
}

body.vimeva-premium-visual-system .vimeva-native-course-card {
    display: flex !important;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

body.vimeva-premium-visual-system .vimeva-native-course-card__image {
    width: 100%;
    min-height: 210px !important;
    height: 210px !important;
    flex: 0 0 210px;
}

body.vimeva-premium-visual-system .vimeva-native-course-card__body {
    min-width: 0;
    padding: 20px !important;
    flex: 1 1 auto;
}

body.vimeva-premium-visual-system .vimeva-native-course-card__title {
    display: block;
    color: var(--v47-ink) !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    line-height: 1.25 !important;
    letter-spacing: -.035em !important;
}

body.vimeva-premium-visual-system .vimeva-native-course-card__meta,
body.vimeva-premium-visual-system .vimeva-native-course-card__progress {
    min-width: 0;
    overflow: hidden;
}

body.vimeva-premium-visual-system .vimeva-native-btn,
body.vimeva-premium-visual-system .vimeva-dashboard-btn,
body.vimeva-premium-visual-system .vimeva-settings-mini-btn,
body.vimeva-premium-visual-system .btn,
body.vimeva-premium-visual-system button {
    border-radius: 15px !important;
    font-weight: 900 !important;
}

body.vimeva-premium-visual-system .vimeva-native-btn--primary,
body.vimeva-premium-visual-system .vimeva-dashboard-btn--primary,
body.vimeva-premium-visual-system .btn-primary,
body.vimeva-premium-visual-system button[type="submit"] {
    background: linear-gradient(135deg, var(--v47-primary), var(--v47-primary-2)) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 34px rgba(124,34,222,.22) !important;
}

body.vimeva-premium-visual-system input,
body.vimeva-premium-visual-system select,
body.vimeva-premium-visual-system textarea,
body.vimeva-premium-visual-system .form-control {
    border-radius: 15px !important;
    border-color: var(--v47-line-strong) !important;
    color: var(--v47-ink) !important;
    box-shadow: none !important;
}

body.vimeva-premium-visual-system input:focus,
body.vimeva-premium-visual-system select:focus,
body.vimeva-premium-visual-system textarea:focus,
body.vimeva-premium-visual-system .form-control:focus {
    border-color: rgba(124,34,222,.42) !important;
    box-shadow: 0 0 0 4px rgba(124,34,222,.12) !important;
}

body.vimeva-premium-visual-system .badge-counter,
body.vimeva-premium-visual-system .count-badge,
body.vimeva-premium-visual-system .panel-header__badge-counter {
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(233,79,122,.22);
}

body.vimeva-premium-visual-system .navbar-auth-user__dropdown {
    border: 1px solid var(--v47-line) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 80px rgba(23,30,70,.13) !important;
    overflow: hidden;
}

body.vimeva-premium-visual-system .navbar-auth-user__dropdown-item a {
    border-radius: 12px;
    color: #303a60 !important;
    font-weight: 800;
}

body.vimeva-premium-visual-system .navbar-auth-user__dropdown-item a:hover {
    color: var(--v47-primary) !important;
    background: rgba(124,34,222,.08) !important;
}

body.vimeva-premium-visual-system .vimeva-dashboard-legacy-compatible,
body.vimeva-premium-visual-system .vimeva-legacy-visual-noise {
    display: none !important;
}

body.vimeva-premium-visual-system .vimeva-no-overlap,
body.vimeva-premium-visual-system .vimeva-dashboard-mockup,
body.vimeva-premium-visual-system .vimeva-settings-mockup,
body.vimeva-premium-visual-system .vimeva-course-library-hero,
body.vimeva-premium-visual-system .vimeva-course-library-toolbar,
body.vimeva-premium-visual-system .vimeva-native-course-card {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 1399.98px) {
    body.vimeva-premium-visual-system {
        --v47-sidebar: 284px;
    }

    body.vimeva-premium-visual-system .vimeva-settings-grid,
    body.vimeva-premium-visual-system .vimeva-course-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1199.98px) {
    body.vimeva-premium-visual-system .panel-header__contents {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.vimeva-premium-visual-system .navbar-item {
        padding: 0 12px !important;
        margin-right: 4px !important;
    }
}

@media (max-width: 991.98px) {
    body.vimeva-premium-visual-system {
        --v47-sidebar: 0px;
        --v47-topbar: 72px;
    }

    body.vimeva-premium-visual-system .panel-header__logo-box {
        width: auto !important;
        min-width: auto !important;
        border-right: 0;
    }

    body.vimeva-premium-visual-system .panel-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.vimeva-premium-visual-system .panel-content__scrollable {
        padding: 22px 16px 50px !important;
    }

    body.vimeva-premium-visual-system .vimeva-dashboard-hero,
    body.vimeva-premium-visual-system .vimeva-course-library-hero {
        grid-template-columns: 1fr !important;
    }

    body.vimeva-premium-visual-system .vimeva-dashboard-profile-card,
    body.vimeva-premium-visual-system .vimeva-course-library-hero__panel {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    body.vimeva-premium-visual-system .vimeva-settings-grid,
    body.vimeva-premium-visual-system .vimeva-course-library-grid,
    body.vimeva-premium-visual-system .vimeva-dashboard-kpis,
    body.vimeva-premium-visual-system .vimeva-course-library-stats {
        grid-template-columns: 1fr !important;
    }

    body.vimeva-premium-visual-system .panel-title-and-breadcrumb {
        margin-bottom: 18px !important;
        padding: 0 18px !important;
    }

    body.vimeva-premium-visual-system .vimeva-dashboard-hero h1,
    body.vimeva-premium-visual-system .vimeva-course-library-hero h1 {
        font-size: 32px !important;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Communications Premium Pass - 0.3.67
|--------------------------------------------------------------------------
| Premium presentation for notifications, support tickets and conversations.
*/

body.vimeva-premium-visual-system .vimeva-communications-page {
    max-width: 1540px;
    margin: 0 auto 72px;
}

body.vimeva-premium-visual-system .vimeva-communications-hero {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(26px, 3vw, 42px);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(255,255,255,.18), transparent 18rem),
        radial-gradient(circle at 12% 96%, rgba(255,255,255,.12), transparent 16rem),
        linear-gradient(135deg, #7c22de 0%, #b21b91 48%, #4e32d7 100%);
    box-shadow: 0 32px 95px rgba(97,39,197,.20);
    overflow: hidden;
    position: relative;
}

body.vimeva-premium-visual-system .vimeva-communications-hero:after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    top: -200px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
}

body.vimeva-premium-visual-system .vimeva-communications-hero > * {
    position: relative;
    z-index: 2;
}

body.vimeva-premium-visual-system .vimeva-communications-hero h1 {
    margin: 14px 0 8px;
    color: #fff !important;
    font-size: clamp(34px, 3.2vw, 52px);
    font-weight: 950;
    letter-spacing: -.06em;
    line-height: 1.04;
}

body.vimeva-premium-visual-system .vimeva-communications-hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 750;
}

body.vimeva-premium-visual-system .vimeva-communications-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

body.vimeva-premium-visual-system .vimeva-communications-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

body.vimeva-premium-visual-system .vimeva-communications-stats article {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--v47-line, #e8eaf5);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--v47-shadow, 0 22px 70px rgba(23,30,70,.075));
}

body.vimeva-premium-visual-system .vimeva-communications-stats article > span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 26px rgba(18,24,60,.055);
}

body.vimeva-premium-visual-system .vimeva-communications-stats strong,
body.vimeva-premium-visual-system .vimeva-communications-stats em {
    display: block;
}

body.vimeva-premium-visual-system .vimeva-communications-stats strong {
    color: var(--v47-ink, #111638);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -.04em;
}

body.vimeva-premium-visual-system .vimeva-communications-stats em {
    margin-top: 5px;
    color: var(--v47-muted, #7480a4);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

body.vimeva-premium-visual-system .vimeva-communications-toolbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 24px;
    padding: 20px 24px;
    border: 1px solid var(--v47-line, #e8eaf5);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--v47-shadow, 0 22px 70px rgba(23,30,70,.075));
}

body.vimeva-premium-visual-system .vimeva-communications-toolbar h2 {
    margin: 0;
    color: var(--v47-ink, #111638);
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -.04em;
}

body.vimeva-premium-visual-system .vimeva-communications-toolbar p {
    margin: 5px 0 0;
    color: var(--v47-muted, #7480a4);
    font-size: 13px;
    font-weight: 750;
}

body.vimeva-premium-visual-system .vimeva-communications-toolbar__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.vimeva-premium-visual-system .vimeva-communications-filter {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid var(--v47-line, #e8eaf5);
    color: #374166;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
}

body.vimeva-premium-visual-system .vimeva-communications-filter:hover,
body.vimeva-premium-visual-system .vimeva-communications-filter.is-active {
    color: var(--v47-primary, #7c22de);
    background: rgba(124,34,222,.08);
}

body.vimeva-premium-visual-system .vimeva-notifications-list {
    margin-top: 22px;
}

body.vimeva-premium-visual-system .vimeva-notification-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    margin-top: 14px;
    padding: 18px;
    border: 1px solid var(--v47-line, #e8eaf5);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 48px rgba(23,30,70,.055);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.vimeva-premium-visual-system .vimeva-notification-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124,34,222,.22);
    box-shadow: 0 24px 72px rgba(23,30,70,.085);
}

body.vimeva-premium-visual-system .vimeva-notification-card.is-unread {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
        radial-gradient(circle at 0 0, rgba(124,34,222,.08), transparent 14rem);
}

body.vimeva-premium-visual-system .vimeva-notification-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: var(--v47-primary, #7c22de);
    background: rgba(124,34,222,.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.vimeva-premium-visual-system .vimeva-notification-card__icon .icons {
    color: currentColor;
}

body.vimeva-premium-visual-system .vimeva-notification-card__body {
    min-width: 0;
}

body.vimeva-premium-visual-system .vimeva-notification-card__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

body.vimeva-premium-visual-system .vimeva-notification-card h3 {
    margin: 0;
    color: var(--v47-ink, #111638);
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -.03em;
}

body.vimeva-premium-visual-system .vimeva-notification-card p {
    margin: 6px 0 0;
    color: var(--v47-muted, #7480a4);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

body.vimeva-premium-visual-system .vimeva-notification-card__top span {
    color: var(--v47-muted, #7480a4);
    font-size: 12px;
    white-space: nowrap;
    font-weight: 750;
}

body.vimeva-premium-visual-system .vimeva-notification-card__action span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--v47-primary, #7c22de);
    background: rgba(124,34,222,.08);
    font-size: 12px;
    font-weight: 950;
}

body.vimeva-premium-visual-system .vimeva-support-workspace {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
    gap: 22px;
    margin-top: 24px;
    align-items: start;
}

body.vimeva-premium-visual-system .vimeva-support-workspace__list,
body.vimeva-premium-visual-system .vimeva-support-workspace__thread {
    min-width: 0;
}

body.vimeva-premium-visual-system .vimeva-support-list-panel,
body.vimeva-premium-visual-system .vimeva-support-thread-panel {
    border: 1px solid var(--v47-line, #e8eaf5) !important;
    border-radius: 28px !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: var(--v47-shadow, 0 22px 70px rgba(23,30,70,.075)) !important;
    overflow: hidden;
}

body.vimeva-premium-visual-system .support-conversation-card,
body.vimeva-premium-visual-system .support-conversation-messages {
    max-height: calc(100vh - 360px);
    min-height: 360px;
}

body.vimeva-premium-visual-system .support-conversation-item {
    border-radius: 18px;
    margin: 4px 12px;
    transition: background .18s ease, transform .18s ease;
}

body.vimeva-premium-visual-system .support-conversation-item:hover,
body.vimeva-premium-visual-system .support-conversation-item.active {
    background: rgba(124,34,222,.08);
    transform: translateX(2px);
}

body.vimeva-premium-visual-system .support-conversation-messages .rounded-12.border-gray-200 {
    border-radius: 20px !important;
    background: rgba(255,255,255,.88);
    border-color: var(--v47-line, #e8eaf5) !important;
}

body.vimeva-premium-visual-system .vimeva-support-create-page .bg-white {
    border-radius: 28px !important;
}

@media (max-width: 1199.98px) {
    body.vimeva-premium-visual-system .vimeva-support-workspace {
        grid-template-columns: 1fr;
    }

    body.vimeva-premium-visual-system .support-conversation-card,
    body.vimeva-premium-visual-system .support-conversation-messages {
        max-height: none;
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    body.vimeva-premium-visual-system .vimeva-communications-hero,
    body.vimeva-premium-visual-system .vimeva-communications-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    body.vimeva-premium-visual-system .vimeva-communications-stats {
        grid-template-columns: 1fr;
    }

    body.vimeva-premium-visual-system .vimeva-notification-card {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    body.vimeva-premium-visual-system .vimeva-notification-card__action {
        grid-column: 2;
    }

    body.vimeva-premium-visual-system .vimeva-notification-card__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Course Library & Learning Experience Premium Pass - 0.3.67
|--------------------------------------------------------------------------
| Premium course library and learning room layer.
| Runtime logic for video, quiz, files, lessons and progress is untouched.
*/

body.vimeva-premium-visual-system .vimeva-course-library-premium-page {
    max-width: 1540px;
    margin: 0 auto 76px;
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-course-library-hero {
    min-height: 250px !important;
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-course-library-toolbar {
    position: sticky;
    top: calc(var(--v47-topbar, 82px) + 12px);
    z-index: 12;
    backdrop-filter: blur(16px);
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-course-library-search {
    background: rgba(255,255,255,.92) !important;
    border-color: rgba(124,34,222,.14) !important;
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-native-course-card {
    min-height: 100%;
    border-radius: 30px !important;
    overflow: hidden;
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-native-course-card__image {
    height: 224px !important;
    min-height: 224px !important;
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-native-course-card__body {
    padding: 22px !important;
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-native-course-card__meta,
body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-native-course-card__progress {
    border-radius: 18px;
    background: rgba(248,247,252,.84) !important;
    border: 1px solid var(--v47-line, #e8eaf5);
}

body.vimeva-premium-visual-system .vimeva-course-library-premium-page .vimeva-native-course-card__footer {
    min-height: 56px;
}

.vimeva-learning-room {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 0%, rgba(124,34,222,.10), transparent 34rem),
        radial-gradient(circle at 100% 12%, rgba(178,27,145,.08), transparent 30rem),
        linear-gradient(180deg, #ffffff 0, #faf9ff 220px, #f7f7fc 100%);
    color: #17203f;
}

.vimeva-learning-room .learning-page__main {
    min-width: 0;
    background: transparent !important;
}

.vimeva-learning-room .vimeva-learning-room-header,
.vimeva-learning-room .learning-page__top-header {
    min-height: 84px;
    border-bottom: 1px solid #e8eaf5 !important;
    background: rgba(255,255,255,.90) !important;
    box-shadow: 0 14px 44px rgba(23,30,70,.045);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 25;
}

.vimeva-learning-room .learning-page__top-header a.font-16 {
    max-width: min(680px, 52vw);
    color: #111638 !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    letter-spacing: -.035em;
    line-height: 1.25;
}

.vimeva-learning-room .learning-page__top-header a.font-16 span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vimeva-learning-room .learning-page__main-content {
    padding: clamp(18px, 2.4vw, 38px);
}

.vimeva-learning-room #mainContent {
    max-width: 1180px;
    margin: 0 auto;
}

.vimeva-learning-room .vimeva-learning-room-content-card,
.vimeva-learning-room #mainContent > .bg-white,
.vimeva-learning-room #mainContent > div > .bg-white {
    border: 1px solid #e8eaf5 !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 24px 78px rgba(23,30,70,.075) !important;
    overflow: hidden;
}

.vimeva-learning-room .learning-page__file-player-card {
    border-radius: 24px !important;
    overflow: hidden;
    background: #111638 !important;
    box-shadow: 0 22px 60px rgba(17,22,56,.14);
}

.vimeva-learning-room .learning-page__sidebar {
    width: 390px;
    min-width: 390px;
    background: rgba(255,255,255,.94) !important;
    border-left: 1px solid #e8eaf5;
    box-shadow: -20px 0 70px rgba(23,30,70,.06);
}

.vimeva-learning-room .learning-page__sidebar-header {
    min-height: 72px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
}

.vimeva-learning-room .learning-page__sidebar-content {
    background:
        radial-gradient(circle at 100% 0%, rgba(124,34,222,.07), transparent 18rem),
        rgba(255,255,255,.96);
}

.vimeva-learning-room .card-with-mask,
.vimeva-learning-room .card-with-dashed-mask,
.vimeva-learning-room .learning-page__sidebar .bg-white {
    border: 1px solid #e8eaf5 !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 52px rgba(23,30,70,.065);
    overflow: hidden;
}

.vimeva-learning-room .learning-progress {
    height: 9px !important;
    border-radius: 999px !important;
    overflow: hidden;
}

.vimeva-learning-room .learning-progress__bar {
    border-radius: 999px !important;
    background: linear-gradient(90deg, #7c22de, #b21b91) !important;
}

.vimeva-learning-room .custom-tabs .custom-tabs-body,
.vimeva-learning-room .learning-page__sidebar .custom-tabs {
    border-radius: 22px;
}

.vimeva-learning-room .custom-tabs a,
.vimeva-learning-room .custom-tabs button {
    border-radius: 14px !important;
    font-weight: 850 !important;
}

.vimeva-learning-room .btn,
.vimeva-learning-room button,
.vimeva-learning-room .learning-page__top-header .rounded-circle {
    border-radius: 15px !important;
}

.vimeva-learning-room .btn-primary,
.vimeva-learning-room button[type="submit"] {
    background: linear-gradient(135deg, #7c22de, #b21b91) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 34px rgba(124,34,222,.22) !important;
}

.vimeva-learning-room .plyr,
.vimeva-learning-room iframe,
.vimeva-learning-room video {
    border-radius: 22px;
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    .vimeva-learning-room .learning-page__sidebar {
        width: 360px;
        min-width: 360px;
    }

    .vimeva-learning-room .learning-page__top-header a.font-16 {
        max-width: 46vw;
    }
}

@media (max-width: 991.98px) {
    .vimeva-learning-room {
        display: block !important;
    }

    .vimeva-learning-room .learning-page__sidebar {
        width: 100%;
        min-width: 0;
        box-shadow: none;
    }

    .vimeva-learning-room .learning-page__top-header a.font-16 {
        max-width: 60vw;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Browser Runtime Verification Gate - 0.3.67
|--------------------------------------------------------------------------
| No visual feature layer. This marker documents that 0.3.67 is a gate
| release focused on critical routes, views and runtime marker checks.
*/


/*
|--------------------------------------------------------------------------
| Vimeva LMS Course Detail Premium Pass - 0.3.67
|--------------------------------------------------------------------------
| Premium public course detail page presentation.
| Cart, checkout, waitlist, reviews, comments, video demo and learning-page runtime are untouched.
*/

.vimeva-course-detail-premium-page {
    max-width: 1280px;
    margin-top: 54px !important;
    padding-bottom: 150px !important;
}

.vimeva-course-detail-premium-page:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 0%, rgba(124,34,222,.10), transparent 34rem),
        radial-gradient(circle at 100% 14%, rgba(178,27,145,.08), transparent 30rem),
        linear-gradient(180deg, #ffffff 0, #fbfaff 240px, #f7f7fc 100%);
}

.vimeva-course-detail-premium-page .course-hero,
.vimeva-course-detail-hero {
    min-height: 430px !important;
    border-radius: 34px !important;
    overflow: hidden;
    padding: clamp(26px, 3vw, 44px) !important;
    box-shadow: 0 34px 110px rgba(23,30,70,.17);
    isolation: isolate;
}

.vimeva-course-detail-hero .course-hero__mask {
    border-radius: 34px !important;
    background:
        linear-gradient(90deg, rgba(12,14,38,.88) 0%, rgba(20,15,58,.66) 48%, rgba(124,34,222,.32) 100%) !important;
}

.vimeva-course-detail-hero .course-hero__cover-img {
    transform: scale(1.015);
    filter: saturate(1.05) contrast(1.02);
}

.vimeva-course-detail-hero .course-hero__title {
    max-width: 900px;
    font-size: clamp(36px, 4.2vw, 60px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.065em !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.vimeva-course-detail-hero .course-hero__content {
    max-width: 980px;
}

.vimeva-course-detail-hero .opacity-50 {
    opacity: .78 !important;
}

.vimeva-course-detail-premium-page > .d-flex.flex-column.flex-lg-row {
    align-items: flex-start;
    gap: 28px !important;
    margin-top: 28px;
}

.vimeva-course-detail-premium-page .course-body-side {
    min-width: 0;
}

.vimeva-course-detail-premium-page .course-right-side {
    width: 390px;
    min-width: 390px;
    position: sticky !important;
    top: 102px;
    align-self: flex-start;
}

.vimeva-course-detail-tabs .course-tabs-card > .position-relative,
.vimeva-course-detail-tabs .course-tabs-card .bg-white {
    min-height: 68px;
    border: 1px solid #e8eaf5;
    border-radius: 24px !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 20px 62px rgba(23,30,70,.07);
    backdrop-filter: blur(16px);
}

.vimeva-course-detail-tabs .navbar-item {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 15px;
    color: #374166 !important;
    font-weight: 900;
}

.vimeva-course-detail-tabs .navbar-item:hover,
.vimeva-course-detail-tabs .navbar-item.active {
    color: #7c22de !important;
    background: rgba(124,34,222,.08);
}

.vimeva-course-detail-tabs .navbar-item:after {
    display: none !important;
}

.vimeva-course-detail-tab-card,
.vimeva-course-detail-premium-page .custom-tabs-body > .custom-tabs-content > .bg-white {
    border: 1px solid #e8eaf5 !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 24px 78px rgba(23,30,70,.075) !important;
    overflow: hidden;
}

.vimeva-course-detail-tab-card h2,
.vimeva-course-detail-tab-card h3,
.vimeva-course-detail-tab-card h5 {
    color: #111638 !important;
    font-weight: 950 !important;
    letter-spacing: -.035em;
}

.vimeva-course-detail-tab-card .course-show-description,
.vimeva-course-detail-tab-card .text-gray-500 {
    color: #7480a4 !important;
    font-weight: 700;
}

.vimeva-course-detail-side-card > .position-relative.bg-white,
.vimeva-course-detail-teacher-card > .position-relative.bg-white,
.vimeva-course-detail-specifications-card > .position-relative.bg-white,
.vimeva-course-detail-premium-page .course-right-side .bg-white {
    border: 1px solid #e8eaf5 !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 24px 78px rgba(23,30,70,.075) !important;
    overflow: hidden;
}

.vimeva-course-detail-side-card .course-right-side__thumbnail {
    border-radius: 30px 30px 0 0 !important;
    overflow: hidden;
}

.vimeva-course-detail-side-card .course-right-side__thumbnail img {
    min-height: 220px;
    filter: saturate(1.05) contrast(1.02);
}

.vimeva-course-detail-price-block #priceBox,
.vimeva-course-detail-price-block > .d-flex.align-items-center.justify-content-center {
    min-height: 72px;
    margin: 18px 16px 0 !important;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(124,34,222,.12), transparent 12rem),
        #f8f7fc;
    border: 1px solid #e8eaf5;
}

.vimeva-course-detail-price-block #realPrice,
.vimeva-course-detail-price-block #priceWithDiscount,
.vimeva-course-detail-price-block .font-24 {
    color: #111638 !important;
    font-size: 30px !important;
    font-weight: 950 !important;
    letter-spacing: -.05em;
}

.vimeva-course-detail-enroll-actions .btn,
.vimeva-course-detail-bottom-card .btn,
.vimeva-course-detail-premium-page .course-right-side .btn {
    min-height: 52px;
    border-radius: 16px !important;
    font-weight: 950 !important;
}

.vimeva-course-detail-enroll-actions .btn-primary,
.vimeva-course-detail-bottom-card .btn-primary,
.vimeva-course-detail-premium-page .course-right-side .btn-primary {
    background: linear-gradient(135deg, #7c22de, #b21b91) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 34px rgba(124,34,222,.22) !important;
}

.vimeva-course-detail-premium-page .course-right-side-section__mask,
.vimeva-course-detail-premium-page .course-tabs-card__mask {
    display: none !important;
}

.vimeva-course-detail-teacher-card .size-64 {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px;
    padding: 3px;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #7c22de, #b21b91);
}

.vimeva-course-detail-teacher-card .size-64 img {
    border: 3px solid #fff;
    border-radius: 19px !important;
}

.vimeva-course-detail-specifications-card h4 {
    color: #111638 !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    letter-spacing: -.035em;
}

.vimeva-course-detail-specifications-card .justify-content-between {
    min-height: 38px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(232,234,245,.72);
}

.vimeva-course-detail-specifications-card .justify-content-between:last-child {
    border-bottom: 0;
}

.vimeva-course-detail-offer {
    margin-bottom: 22px;
}

.vimeva-course-detail-offer .bg-white {
    border: 1px solid rgba(124,34,222,.16) !important;
    box-shadow: 0 18px 54px rgba(124,34,222,.12);
}

.vimeva-course-detail-bottom-card {
    min-height: 82px;
    border-top: 1px solid #e8eaf5 !important;
    background: rgba(255,255,255,.90) !important;
    box-shadow: 0 -16px 52px rgba(23,30,70,.07);
    backdrop-filter: blur(16px);
}

.vimeva-course-detail-bottom-card .course-bottom-fixed-card__course-img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.vimeva-course-detail-bottom-card__progress,
.course-bottom-fixed-card__progress {
    background: rgba(124,34,222,.10) !important;
}

@media (max-width: 1199.98px) {
    .vimeva-course-detail-premium-page .course-right-side {
        width: 360px;
        min-width: 360px;
    }

    .vimeva-course-detail-hero .course-hero__title {
        font-size: clamp(34px, 4.6vw, 52px) !important;
    }
}

@media (max-width: 991.98px) {
    .vimeva-course-detail-premium-page {
        margin-top: 24px !important;
    }

    .vimeva-course-detail-premium-page .course-right-side {
        width: 100%;
        min-width: 0;
        position: relative !important;
        top: auto;
    }

    .vimeva-course-detail-premium-page > .d-flex.flex-column.flex-lg-row {
        gap: 22px !important;
    }
}

@media (max-width: 767.98px) {
    .vimeva-course-detail-hero {
        min-height: 360px !important;
        padding: 24px !important;
    }

    .vimeva-course-detail-hero .course-hero__title {
        font-size: 34px !important;
    }

    .vimeva-course-detail-tabs .course-tabs-card .bg-white {
        gap: 8px !important;
        padding: 10px !important;
    }

    .vimeva-course-detail-tabs .navbar-item {
        flex: 1 1 auto;
        min-height: 42px;
        padding: 0 10px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Room Content Polish - 0.3.67
|--------------------------------------------------------------------------
| Polishes actual learning content cards and footer actions.
| Runtime for video, quiz, files, notes, progress and lesson completion remains untouched.
*/

.vimeva-learning-room .vimeva-learning-content-polish {
    position: relative;
    padding: clamp(18px, 2vw, 28px) !important;
    border: 1px solid #e8eaf5 !important;
    border-radius: 32px !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(124,34,222,.055), transparent 18rem),
        rgba(255,255,255,.97) !important;
    box-shadow: 0 26px 82px rgba(23,30,70,.08) !important;
    overflow: hidden;
}

.vimeva-learning-room .vimeva-learning-content-polish:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #7c22de, #b21b91, #4e32d7);
    opacity: .88;
}

.vimeva-learning-room .vimeva-learning-room-content-card > .learning-page__file-player-card:first-child,
.vimeva-learning-room .vimeva-learning-content-polish > .learning-page__file-player-card:first-child {
    margin-top: 4px;
}

.vimeva-learning-room .learning-page__file-player-card,
.vimeva-learning-room .vimeva-learning-content-polish iframe,
.vimeva-learning-room .vimeva-learning-content-polish video,
.vimeva-learning-room .vimeva-learning-content-polish .plyr {
    border-radius: 24px !important;
}

.vimeva-learning-room .vimeva-learning-content-polish .border-gray-200,
.vimeva-learning-room .vimeva-learning-content-polish .bg-gray-100 {
    border-color: #e8eaf5 !important;
    background: rgba(248,247,252,.84) !important;
}

.vimeva-learning-room .vimeva-learning-content-polish h1,
.vimeva-learning-room .vimeva-learning-content-polish h2,
.vimeva-learning-room .vimeva-learning-content-polish h3,
.vimeva-learning-room .vimeva-learning-content-polish h4 {
    color: #111638 !important;
    letter-spacing: -.035em;
}

.vimeva-learning-room .vimeva-learning-room-footer-card {
    gap: 18px;
    padding: 18px !important;
    border: 1px solid #e8eaf5 !important;
    border-radius: 24px !important;
    background: rgba(248,247,252,.82) !important;
}

.vimeva-learning-room .vimeva-learning-room-footer-card h2 {
    color: #111638 !important;
    font-size: clamp(22px, 2vw, 32px) !important;
    font-weight: 950 !important;
    line-height: 1.12 !important;
    letter-spacing: -.055em;
}

.vimeva-learning-room .vimeva-learning-room-description {
    padding: 20px 22px;
    border: 1px solid #e8eaf5;
    border-radius: 24px;
    background: #fff;
    color: #465174 !important;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 650;
}

.vimeva-learning-room .vimeva-learning-room-attachments {
    border: 1px solid #e8eaf5 !important;
    border-radius: 24px !important;
    background: rgba(248,247,252,.86) !important;
}

.vimeva-learning-room .vimeva-learning-room-attachments a {
    border: 1px solid #e8eaf5;
    box-shadow: 0 14px 34px rgba(23,30,70,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vimeva-learning-room .vimeva-learning-room-attachments a:hover {
    transform: translateY(-2px);
    border-color: rgba(124,34,222,.24);
    box-shadow: 0 24px 64px rgba(23,30,70,.08);
}

.vimeva-learning-room .vimeva-learning-room-completion {
    border-top-color: #e8eaf5 !important;
}

.vimeva-learning-room .vimeva-learning-room-completion .custom-switch {
    flex: 0 0 auto;
}

.vimeva-learning-room .vimeva-learning-room-completion label {
    color: #465174 !important;
    font-weight: 850;
}

.vimeva-learning-room .vimeva-learning-content-polish .btn,
.vimeva-learning-room .vimeva-learning-room-footer-card .d-flex-center.size-48 {
    border-radius: 16px !important;
}

@media (max-width: 767.98px) {
    .vimeva-learning-room .vimeva-learning-room-footer-card {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .vimeva-learning-room .vimeva-learning-room-footer-card > .d-flex:last-child {
        width: 100%;
        justify-content: flex-start;
    }

    .vimeva-learning-room .vimeva-learning-room-description {
        padding: 16px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Sidebar & Chapter Navigation - 0.3.67
|--------------------------------------------------------------------------
| Premium sidebar navigation for chapters, lesson items, quizzes and certificates.
| Content loading, sequence locks and progress runtime are intentionally preserved.
*/

.vimeva-learning-room .vimeva-learning-sidebar-navigation {
    border-left: 1px solid #e8eaf5;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .learning-page__sidebar-content {
    padding-bottom: 42px;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .custom-tabs-items-scrollable-mobile {
    gap: 8px;
    padding: 8px;
    margin: 0 12px 16px;
    border: 1px solid #e8eaf5 !important;
    border-radius: 20px;
    background: rgba(248,247,252,.92);
    overflow-x: auto;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .custom-tabs-items-scrollable-mobile a,
.vimeva-learning-room .vimeva-learning-sidebar-navigation .custom-tabs-items-scrollable-mobile button {
    min-height: 40px;
    padding: 0 14px !important;
    border-radius: 14px !important;
    white-space: nowrap;
    font-weight: 900 !important;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item,
.vimeva-learning-room .vimeva-learning-sidebar-item {
    position: relative;
    min-height: 76px;
    border: 1px solid #e8eaf5 !important;
    background: rgba(255,255,255,.92) !important;
    box-shadow: 0 14px 34px rgba(23,30,70,.045);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item:hover,
.vimeva-learning-room .vimeva-learning-sidebar-item:hover,
.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item.active {
    transform: translateY(-1px);
    border-color: rgba(124,34,222,.22) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,255,.94)) !important;
    box-shadow: 0 22px 58px rgba(23,30,70,.075);
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item:before,
.vimeva-learning-room .vimeva-learning-sidebar-item:before {
    content: "";
    position: absolute;
    left: -1px;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: transparent;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item:hover:before,
.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item.active:before {
    background: linear-gradient(180deg, #7c22de, #b21b91);
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item .size-48,
.vimeva-learning-room .vimeva-learning-sidebar-item .size-48 {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    border-radius: 17px !important;
    border: 1px solid #e8eaf5;
    background: rgba(124,34,222,.08) !important;
    color: #7c22de !important;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item .icons,
.vimeva-learning-room .vimeva-learning-sidebar-item .icons {
    color: currentColor !important;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item span.font-weight-bold,
.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item .font-weight-bold {
    max-width: 214px;
    color: #111638 !important;
    font-size: 14px !important;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-item-lock-icon {
    width: 23px;
    height: 23px;
    right: -7px;
    bottom: -7px;
    border: 1px solid #ffe2ea;
    box-shadow: 0 8px 20px rgba(233,79,122,.16);
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .accordion__item,
.vimeva-learning-room .vimeva-learning-sidebar-chapter {
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid #e8eaf5;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 44px rgba(23,30,70,.052);
    margin-bottom: 14px;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .accordion__title,
.vimeva-learning-room .vimeva-learning-sidebar-navigation .accordion__title-text {
    color: #111638 !important;
    font-weight: 950 !important;
    letter-spacing: -.035em;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .accordion__collapse {
    background: rgba(248,247,252,.66);
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation [data-vimeva-sidebar-progress] {
    color: #111638;
    font-weight: 950;
    letter-spacing: -.035em;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .learning-progress {
    background: rgba(124,34,222,.10) !important;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .learning-progress__bar {
    background: linear-gradient(90deg, #7c22de, #b21b91) !important;
}

.vimeva-learning-room .vimeva-learning-sidebar-navigation .d-flex-center.px-8.py-4.rounded-32 {
    min-height: 28px;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
}

@media (max-width: 991.98px) {
    .vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item span.font-weight-bold,
    .vimeva-learning-room .vimeva-learning-sidebar-navigation .sidebar-content-item .font-weight-bold {
        max-width: calc(100vw - 190px);
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Progress & Certificates - 0.3.67
|--------------------------------------------------------------------------
| Premium progress, completion and certificate presentation.
| Progress calculations, certificate downloads, quiz results and lesson completion runtime are preserved.
*/

body.vimeva-premium-visual-system .vimeva-student-progress-card {
    position: relative;
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #e8eaf5;
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(124,34,222,.06), transparent 12rem),
        rgba(255,255,255,.88);
}

body.vimeva-premium-visual-system .vimeva-student-progress-card .progress-bar,
.vimeva-learning-room .vimeva-student-progress-card .progress-bar {
    height: 9px !important;
    border-radius: 999px !important;
    overflow: hidden;
    background: rgba(124,34,222,.10) !important;
}

body.vimeva-premium-visual-system .vimeva-student-progress-card .progress-bar span,
.vimeva-learning-room .vimeva-student-progress-card .progress-bar span {
    border-radius: 999px !important;
    background: linear-gradient(90deg, #7c22de, #b21b91) !important;
}

.vimeva-learning-room .vimeva-student-certificate-navigation .sidebar-content-item {
    border-color: rgba(124,34,222,.16) !important;
}

.vimeva-learning-room .vimeva-student-certificate-navigation .sidebar-content-item a {
    box-shadow: 0 10px 24px rgba(23,30,70,.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.vimeva-learning-room .vimeva-student-certificate-navigation .sidebar-content-item a:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(23,30,70,.10);
}

.vimeva-learning-room [data-vimeva-student-certificate-content] .border-gray-200 {
    min-height: 360px;
    border: 1px solid #e8eaf5 !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(124,34,222,.08), transparent 22rem),
        linear-gradient(180deg, #fff, #faf9ff);
}

.vimeva-learning-room [data-vimeva-student-completion-toggle] {
    border-top-color: #e8eaf5 !important;
    background: rgba(255,255,255,.72);
    border-radius: 0 0 24px 24px;
}

.vimeva-panel-certificate-progress {
    position: relative;
}

body.vimeva-lms-panel-shell .vimeva-panel-certificate-progress .bg-white {
    border: 1px solid #e8eaf5 !important;
    box-shadow: 0 18px 50px rgba(23,30,70,.06) !important;
}

body.vimeva-lms-panel-shell .vimeva-panel-certificate-progress [class*="size-48"],
body.vimeva-lms-panel-shell .vimeva-panel-certificate-progress [class*="size-64"] {
    box-shadow: inset 0 0 0 1px rgba(124,34,222,.08);
}

body.vimeva-lms-panel-shell tr[data-vimeva-certificate-row] td {
    vertical-align: middle;
}

body.vimeva-lms-panel-shell tr[data-vimeva-certificate-row] .actions-dropdown button {
    border-radius: 14px !important;
    background: #fff !important;
    border: 1px solid #e8eaf5 !important;
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Runtime Smoke & Blade Safety Gate - 0.3.67
|--------------------------------------------------------------------------
| Safety audit layer only. No visual runtime changes.
| Guards against Blade marker injection inside data-id, class and PHP expressions.
*/

[data-vimeva-learning-runtime-smoke-page],
[data-vimeva-learning-runtime-smoke-main],
[data-vimeva-learning-runtime-smoke-sidebar] {
    --vimeva-learning-runtime-smoke-gate: 1;
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Room Responsive & UX Polish - 0.3.67
|--------------------------------------------------------------------------
| Visual/responsive polish only. Routes, controllers, JS runtime, quiz runtime,
| completion runtime, progress runtime and certificate downloads are preserved.
*/

.vimeva-learning-room[data-vimeva-learning-responsive-polish-page],
.vimeva-learning-room [data-vimeva-learning-responsive-polish-main],
.vimeva-learning-room [data-vimeva-learning-responsive-polish-sidebar] {
    --vimeva-learning-polish-radius: 24px;
    --vimeva-learning-polish-border: #e8eaf5;
    --vimeva-learning-polish-shadow: 0 18px 50px rgba(23,30,70,.06);
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-header] {
    border-bottom: 1px solid rgba(232,234,245,.92);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-main] {
    min-width: 0;
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-main] .vimeva-learning-content-polish,
.vimeva-learning-room [data-vimeva-learning-responsive-polish-main] .vimeva-learning-room-content-card {
    border-radius: var(--vimeva-learning-polish-radius);
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-sidebar] {
    border-left: 1px solid var(--vimeva-learning-polish-border);
    background:
        radial-gradient(circle at 100% 0%, rgba(124,34,222,.045), transparent 18rem),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,248,252,.96));
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-sidebar] .sidebar-content-item {
    overflow: hidden;
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-sidebar] .sidebar-content-item .font-weight-bold {
    word-break: break-word;
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-footer] {
    margin-top: 24px;
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-footer] .js-passed-item-toggle,
.vimeva-learning-room [data-vimeva-learning-responsive-polish-footer] .js-add-personal-note {
    transition: transform .18s ease, box-shadow .18s ease;
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-footer] .js-passed-item-toggle:hover,
.vimeva-learning-room [data-vimeva-learning-responsive-polish-footer] .js-add-personal-note:hover {
    transform: translateY(-1px);
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-certificates] a,
.vimeva-learning-room [data-vimeva-learning-responsive-polish-quizzes] {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vimeva-learning-room [data-vimeva-learning-responsive-polish-certificates] a:hover,
.vimeva-learning-room [data-vimeva-learning-responsive-polish-quizzes]:hover {
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .vimeva-learning-room [data-vimeva-learning-responsive-polish-sidebar] {
        box-shadow: -18px 0 42px rgba(23,30,70,.06);
    }

    .vimeva-learning-room [data-vimeva-learning-responsive-polish-main] {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 767.98px) {
    .vimeva-learning-room [data-vimeva-learning-responsive-polish-header] {
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .vimeva-learning-room [data-vimeva-learning-responsive-polish-main] {
        padding-left: 10px;
        padding-right: 10px;
    }

    .vimeva-learning-room [data-vimeva-learning-responsive-polish-sidebar] .sidebar-content-item {
        min-height: 68px;
        border-radius: 18px !important;
    }

    .vimeva-learning-room [data-vimeva-learning-responsive-polish-footer] {
        border-radius: 18px !important;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Room Accessibility & Interaction States - 0.3.67
|--------------------------------------------------------------------------
| Accessibility and interaction polish only. Routes, controllers, JS runtime,
| quiz runtime, completion runtime, progress runtime and certificate downloads
| are preserved.
*/

.vimeva-learning-room {
    --vimeva-focus-ring: 0 0 0 4px rgba(124, 34, 222, .16);
    --vimeva-focus-border: rgba(124, 34, 222, .42);
    --vimeva-readable-line-height: 1.72;
}

.vimeva-learning-room a:focus-visible,
.vimeva-learning-room button:focus-visible,
.vimeva-learning-room [role="button"]:focus-visible,
.vimeva-learning-room .js-content-tab-item:focus-visible,
.vimeva-learning-room .js-sequence-content-error-modal:focus-visible,
.vimeva-learning-room .js-passed-item-toggle:focus-visible,
.vimeva-learning-room .js-add-personal-note:focus-visible {
    outline: none !important;
    box-shadow: var(--vimeva-focus-ring) !important;
    border-color: var(--vimeva-focus-border) !important;
}

.vimeva-learning-room p,
.vimeva-learning-room li,
.vimeva-learning-room .vimeva-learning-room-description {
    line-height: var(--vimeva-readable-line-height);
}

.vimeva-learning-room .sidebar-content-item,
.vimeva-learning-room .vimeva-learning-sidebar-item,
.vimeva-learning-room .js-content-tab-item,
.vimeva-learning-room .js-sequence-content-error-modal {
    border: 1px solid transparent;
}

.vimeva-learning-room .sidebar-content-item:hover,
.vimeva-learning-room .vimeva-learning-sidebar-item:hover,
.vimeva-learning-room .js-content-tab-item:hover,
.vimeva-learning-room .js-sequence-content-error-modal:hover {
    border-color: rgba(124, 34, 222, .18) !important;
}

.vimeva-learning-room .js-passed-item-toggle,
.vimeva-learning-room .js-add-personal-note {
    min-height: 42px;
}

.vimeva-learning-room .js-passed-item-toggle:active,
.vimeva-learning-room .js-add-personal-note:active,
.vimeva-learning-room .sidebar-content-item:active {
    transform: translateY(0) scale(.992);
}

@media (prefers-reduced-motion: reduce) {
    .vimeva-learning-room *,
    .vimeva-learning-room *::before,
    .vimeva-learning-room *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 767.98px) {
    .vimeva-learning-room .sidebar-content-item,
    .vimeva-learning-room .vimeva-learning-sidebar-item {
        min-height: 70px;
    }

    .vimeva-learning-room .js-passed-item-toggle,
    .vimeva-learning-room .js-add-personal-note {
        width: 100%;
        justify-content: center;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Room Empty States & Loading Feedback - 0.3.67
|--------------------------------------------------------------------------
| Empty state, fallback and loading-feel polish only. Routes, controllers,
| JS runtime, quiz runtime, completion runtime, progress runtime and certificate
| downloads are preserved.
*/

.vimeva-learning-room {
    --vimeva-empty-state-bg: linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,248,252,.96));
    --vimeva-empty-state-border: #e8eaf5;
    --vimeva-loading-sheen: linear-gradient(90deg, rgba(124,34,222,0), rgba(124,34,222,.09), rgba(124,34,222,0));
}

.vimeva-learning-room .learning-content-loading,
.vimeva-learning-room .js-learning-content-loading,
.vimeva-learning-room .vimeva-learning-loading,
.vimeva-learning-room .vimeva-learning-empty-state {
    border: 1px solid var(--vimeva-empty-state-border);
    border-radius: 24px;
    background: var(--vimeva-empty-state-bg);
    box-shadow: 0 18px 50px rgba(23,30,70,.05);
}

.vimeva-learning-room .learning-content-loading::after,
.vimeva-learning-room .js-learning-content-loading::after,
.vimeva-learning-room .vimeva-learning-loading::after {
    content: "";
    display: block;
    height: 3px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--vimeva-loading-sheen);
    background-size: 200% 100%;
    animation: vimevaLearningLoadingSheen 1.5s ease-in-out infinite;
}

.vimeva-learning-room .empty-state,
.vimeva-learning-room .no-result,
.vimeva-learning-room .no-result.default-no-result,
.vimeva-learning-room .vimeva-learning-empty-state {
    color: #4b5565;
}

.vimeva-learning-room .empty-state h1,
.vimeva-learning-room .empty-state h2,
.vimeva-learning-room .empty-state h3,
.vimeva-learning-room .no-result h1,
.vimeva-learning-room .no-result h2,
.vimeva-learning-room .no-result h3,
.vimeva-learning-room .vimeva-learning-empty-state h1,
.vimeva-learning-room .vimeva-learning-empty-state h2,
.vimeva-learning-room .vimeva-learning-empty-state h3 {
    color: #151827;
    letter-spacing: -.02em;
}

.vimeva-learning-room .empty-state p,
.vimeva-learning-room .no-result p,
.vimeva-learning-room .vimeva-learning-empty-state p {
    max-width: 680px;
    line-height: 1.72;
    color: #667085;
}

.vimeva-learning-room .sidebar-content-item:empty,
.vimeva-learning-room .learning-content-card:empty,
.vimeva-learning-room .vimeva-learning-room-content-card:empty {
    min-height: 120px;
    border: 1px dashed rgba(124,34,222,.22);
    border-radius: 24px;
    background: rgba(124,34,222,.035);
}

@keyframes vimevaLearningLoadingSheen {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .vimeva-learning-room .learning-content-loading::after,
    .vimeva-learning-room .js-learning-content-loading::after,
    .vimeva-learning-room .vimeva-learning-loading::after {
        animation: none !important;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Learning Room Dutch Microcopy & Guidance - 0.3.67
|--------------------------------------------------------------------------
| Dutch microcopy and guidance polish only. Routes, controllers, JS runtime,
| quiz runtime, completion runtime, progress runtime and certificate downloads
| are preserved.
*/

.vimeva-learning-room {
    --vimeva-guidance-bg: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,253,.96));
    --vimeva-guidance-border: rgba(124,34,222,.14);
    --vimeva-guidance-text: #667085;
    --vimeva-guidance-title: #151827;
}

.vimeva-learning-room .vimeva-learning-guidance,
.vimeva-learning-room .vimeva-learning-empty-state,
.vimeva-learning-room .no-result,
.vimeva-learning-room .empty-state {
    position: relative;
    border: 1px solid var(--vimeva-guidance-border);
    border-radius: 24px;
    background: var(--vimeva-guidance-bg);
    padding: 22px;
}

.vimeva-learning-room .vimeva-learning-guidance::before,
.vimeva-learning-room .vimeva-learning-empty-state::before,
.vimeva-learning-room .no-result::before,
.vimeva-learning-room .empty-state::before {
    content: "Tip";
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(124,34,222,.09);
    color: #7c22de;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
}

.vimeva-learning-room .vimeva-learning-guidance h1,
.vimeva-learning-room .vimeva-learning-guidance h2,
.vimeva-learning-room .vimeva-learning-guidance h3,
.vimeva-learning-room .vimeva-learning-empty-state h1,
.vimeva-learning-room .vimeva-learning-empty-state h2,
.vimeva-learning-room .vimeva-learning-empty-state h3,
.vimeva-learning-room .no-result h1,
.vimeva-learning-room .no-result h2,
.vimeva-learning-room .no-result h3,
.vimeva-learning-room .empty-state h1,
.vimeva-learning-room .empty-state h2,
.vimeva-learning-room .empty-state h3 {
    color: var(--vimeva-guidance-title);
    font-weight: 800;
    letter-spacing: -.02em;
}

.vimeva-learning-room .vimeva-learning-guidance p,
.vimeva-learning-room .vimeva-learning-empty-state p,
.vimeva-learning-room .no-result p,
.vimeva-learning-room .empty-state p {
    color: var(--vimeva-guidance-text);
    line-height: 1.72;
}

.vimeva-learning-room .learning-content-loading,
.vimeva-learning-room .js-learning-content-loading,
.vimeva-learning-room .vimeva-learning-loading {
    color: var(--vimeva-guidance-text);
}

.vimeva-learning-room .learning-content-loading::before,
.vimeva-learning-room .js-learning-content-loading::before,
.vimeva-learning-room .vimeva-learning-loading::before {
    content: "Je les wordt geladen";
    display: block;
    color: var(--vimeva-guidance-title);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.vimeva-learning-room .learning-content-loading > span:empty::after,
.vimeva-learning-room .js-learning-content-loading > span:empty::after,
.vimeva-learning-room .vimeva-learning-loading > span:empty::after {
    content: "We halen het gekozen onderdeel voor je op.";
}

@media (max-width: 767.98px) {
    .vimeva-learning-room .vimeva-learning-guidance,
    .vimeva-learning-room .vimeva-learning-empty-state,
    .vimeva-learning-room .no-result,
    .vimeva-learning-room .empty-state {
        padding: 18px;
        border-radius: 20px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Dashboard & Course Overview Continuity Gate - 0.3.67
|--------------------------------------------------------------------------
| Continuity polish only. Routes, controllers, JS runtime, learning runtime,
| quiz runtime, completion runtime, progress runtime and certificate downloads
| are preserved.
*/

.vimeva-student-dashboard,
.vimeva-panel-shell,
.vimeva-learning-room,
.vimeva-course-detail-premium {
    --vimeva-entry-continuity-border: rgba(124,34,222,.13);
    --vimeva-entry-continuity-bg: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,253,.96));
    --vimeva-entry-continuity-shadow: 0 18px 48px rgba(23,30,70,.055);
}

.vimeva-panel-shell .vimeva-course-card,
.vimeva-panel-shell .vimeva-dashboard-card,
.vimeva-panel-shell .vimeva-certificate-card,
.vimeva-panel-shell .course-card,
.vimeva-panel-shell .webinar-card,
.vimeva-course-detail-premium .course-content-card,
.vimeva-learning-room .sidebar-content-item {
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vimeva-panel-shell .vimeva-course-card:hover,
.vimeva-panel-shell .vimeva-dashboard-card:hover,
.vimeva-panel-shell .vimeva-certificate-card:hover,
.vimeva-panel-shell .course-card:hover,
.vimeva-panel-shell .webinar-card:hover,
.vimeva-course-detail-premium .course-content-card:hover,
.vimeva-learning-room .sidebar-content-item:hover {
    border-color: var(--vimeva-entry-continuity-border);
    box-shadow: var(--vimeva-entry-continuity-shadow);
}

.vimeva-panel-shell .vimeva-course-card a:focus-visible,
.vimeva-panel-shell .course-card a:focus-visible,
.vimeva-panel-shell .webinar-card a:focus-visible,
.vimeva-course-detail-premium a:focus-visible,
.vimeva-learning-room a:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(124,34,222,.16) !important;
    border-color: rgba(124,34,222,.38) !important;
}

.vimeva-panel-shell .vimeva-course-progress,
.vimeva-panel-shell .progress,
.vimeva-course-detail-premium .progress,
.vimeva-learning-room .progress {
    overflow: hidden;
    border-radius: 999px;
}

.vimeva-panel-shell .vimeva-empty-state,
.vimeva-panel-shell .no-result,
.vimeva-course-detail-premium .no-result {
    border: 1px solid var(--vimeva-entry-continuity-border);
    border-radius: 24px;
    background: var(--vimeva-entry-continuity-bg);
    box-shadow: var(--vimeva-entry-continuity-shadow);
}

@media (max-width: 767.98px) {
    .vimeva-panel-shell .vimeva-course-card,
    .vimeva-panel-shell .course-card,
    .vimeva-panel-shell .webinar-card {
        border-radius: 20px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Course Cards Visual Polish - 0.3.67
|--------------------------------------------------------------------------
| Visible card/progress/certificate polish only. Routes, controllers,
| JS runtime, learning runtime, quiz runtime, completion runtime, progress
| calculations and certificate downloads are preserved.
*/

.vimeva-panel-shell,
.vimeva-student-dashboard {
    --vimeva-card-polish-bg: linear-gradient(180deg, rgba(255,255,255,.99), rgba(250,248,253,.97));
    --vimeva-card-polish-border: rgba(124,34,222,.13);
    --vimeva-card-polish-border-hover: rgba(124,34,222,.28);
    --vimeva-card-polish-shadow: 0 18px 48px rgba(23,30,70,.055);
    --vimeva-card-polish-shadow-hover: 0 24px 70px rgba(23,30,70,.09);
    --vimeva-card-polish-radius: 24px;
}

.vimeva-panel-shell .course-card,
.vimeva-panel-shell .webinar-card,
.vimeva-panel-shell .vimeva-course-card,
.vimeva-panel-shell .vimeva-dashboard-card,
.vimeva-panel-shell .vimeva-certificate-card,
.vimeva-panel-shell .panel-card,
.vimeva-panel-shell .card {
    border-color: var(--vimeva-card-polish-border);
    border-radius: var(--vimeva-card-polish-radius);
    background: var(--vimeva-card-polish-bg);
    box-shadow: var(--vimeva-card-polish-shadow);
}

.vimeva-panel-shell .course-card:hover,
.vimeva-panel-shell .webinar-card:hover,
.vimeva-panel-shell .vimeva-course-card:hover,
.vimeva-panel-shell .vimeva-dashboard-card:hover,
.vimeva-panel-shell .vimeva-certificate-card:hover,
.vimeva-panel-shell .panel-card:hover {
    border-color: var(--vimeva-card-polish-border-hover);
    box-shadow: var(--vimeva-card-polish-shadow-hover);
    transform: translateY(-2px);
}

.vimeva-panel-shell .course-card img,
.vimeva-panel-shell .webinar-card img,
.vimeva-panel-shell .vimeva-course-card img {
    border-radius: 20px;
}

.vimeva-panel-shell .progress,
.vimeva-panel-shell .vimeva-course-progress,
.vimeva-panel-shell .progress-bar {
    border-radius: 999px;
}

.vimeva-panel-shell .progress {
    background: rgba(124,34,222,.08);
    min-height: 8px;
}

.vimeva-panel-shell .progress-bar {
    box-shadow: 0 4px 14px rgba(124,34,222,.18);
}

.vimeva-panel-shell .course-card .font-weight-bold,
.vimeva-panel-shell .webinar-card .font-weight-bold,
.vimeva-panel-shell .vimeva-course-card .font-weight-bold {
    letter-spacing: -.012em;
}

.vimeva-panel-shell .course-card a,
.vimeva-panel-shell .webinar-card a,
.vimeva-panel-shell .vimeva-course-card a,
.vimeva-panel-shell .vimeva-certificate-card a {
    text-decoration: none;
}

.vimeva-panel-shell .course-card a:focus-visible,
.vimeva-panel-shell .webinar-card a:focus-visible,
.vimeva-panel-shell .vimeva-course-card a:focus-visible,
.vimeva-panel-shell .vimeva-certificate-card a:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(124,34,222,.16) !important;
    border-color: rgba(124,34,222,.38) !important;
}

.vimeva-panel-shell .vimeva-certificate-card,
.vimeva-panel-shell .certificate-card,
.vimeva-panel-shell [class*="certificate"] .card {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .vimeva-panel-shell .course-card,
    .vimeva-panel-shell .webinar-card,
    .vimeva-panel-shell .vimeva-course-card,
    .vimeva-panel-shell .panel-card,
    .vimeva-panel-shell .card {
        border-radius: 20px;
    }

    .vimeva-panel-shell .course-card:hover,
    .vimeva-panel-shell .webinar-card:hover,
    .vimeva-panel-shell .vimeva-course-card:hover,
    .vimeva-panel-shell .panel-card:hover {
        transform: none;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Dashboard Header & Quick Actions Polish - 0.3.67
|--------------------------------------------------------------------------
| Visible dashboard header, quick action and CTA polish only. Routes,
| controllers, JS runtime, learning runtime, quiz runtime, completion runtime,
| progress calculations and certificate downloads are preserved.
*/

.vimeva-panel-shell,
.vimeva-student-dashboard {
    --vimeva-dashboard-header-bg: linear-gradient(135deg, rgba(21,24,39,.98), rgba(70,30,100,.94));
    --vimeva-dashboard-header-border: rgba(255,255,255,.14);
    --vimeva-dashboard-action-bg: rgba(255,255,255,.96);
    --vimeva-dashboard-action-border: rgba(124,34,222,.14);
    --vimeva-dashboard-action-shadow: 0 18px 48px rgba(23,30,70,.06);
    --vimeva-dashboard-cta-bg: linear-gradient(135deg, #7c22de, #a0267d);
    --vimeva-dashboard-cta-shadow: 0 16px 34px rgba(124,34,222,.24);
}

.vimeva-panel-shell .dashboard-header,
.vimeva-panel-shell .student-dashboard-header,
.vimeva-panel-shell .vimeva-dashboard-header,
.vimeva-student-dashboard .dashboard-header,
.vimeva-student-dashboard .student-dashboard-header,
.vimeva-student-dashboard .vimeva-dashboard-header {
    border: 1px solid var(--vimeva-dashboard-header-border);
    border-radius: 28px;
    background: var(--vimeva-dashboard-header-bg);
    box-shadow: 0 24px 80px rgba(23,30,70,.12);
    color: #fff;
}

.vimeva-panel-shell .dashboard-header h1,
.vimeva-panel-shell .dashboard-header h2,
.vimeva-panel-shell .student-dashboard-header h1,
.vimeva-panel-shell .student-dashboard-header h2,
.vimeva-panel-shell .vimeva-dashboard-header h1,
.vimeva-panel-shell .vimeva-dashboard-header h2 {
    color: #fff;
    letter-spacing: -.025em;
}

.vimeva-panel-shell .quick-action,
.vimeva-panel-shell .quick-action-card,
.vimeva-panel-shell .vimeva-quick-action,
.vimeva-panel-shell .student-action-card,
.vimeva-panel-shell .dashboard-action-card {
    border: 1px solid var(--vimeva-dashboard-action-border);
    border-radius: 24px;
    background: var(--vimeva-dashboard-action-bg);
    box-shadow: var(--vimeva-dashboard-action-shadow);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vimeva-panel-shell .quick-action:hover,
.vimeva-panel-shell .quick-action-card:hover,
.vimeva-panel-shell .vimeva-quick-action:hover,
.vimeva-panel-shell .student-action-card:hover,
.vimeva-panel-shell .dashboard-action-card:hover {
    transform: translateY(-2px);
    border-color: rgba(124,34,222,.28);
    box-shadow: 0 24px 70px rgba(23,30,70,.10);
}

.vimeva-panel-shell .btn-primary,
.vimeva-panel-shell .btn-primary-gradient,
.vimeva-panel-shell .vimeva-primary-cta,
.vimeva-panel-shell .js-content-tab-item.btn,
.vimeva-course-detail-premium .btn-primary,
.vimeva-learning-room .btn-primary {
    border: 0;
    background: var(--vimeva-dashboard-cta-bg);
    box-shadow: var(--vimeva-dashboard-cta-shadow);
}

.vimeva-panel-shell .btn-primary:hover,
.vimeva-panel-shell .btn-primary-gradient:hover,
.vimeva-panel-shell .vimeva-primary-cta:hover,
.vimeva-course-detail-premium .btn-primary:hover,
.vimeva-learning-room .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 46px rgba(124,34,222,.30);
}

.vimeva-panel-shell .btn,
.vimeva-course-detail-premium .btn,
.vimeva-learning-room .btn {
    border-radius: 999px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vimeva-panel-shell .btn:focus-visible,
.vimeva-panel-shell .quick-action:focus-visible,
.vimeva-panel-shell .quick-action-card:focus-visible,
.vimeva-panel-shell .vimeva-quick-action:focus-visible,
.vimeva-panel-shell .student-action-card:focus-visible,
.vimeva-panel-shell .dashboard-action-card:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(124,34,222,.16), var(--vimeva-dashboard-action-shadow) !important;
}

@media (max-width: 767.98px) {
    .vimeva-panel-shell .dashboard-header,
    .vimeva-panel-shell .student-dashboard-header,
    .vimeva-panel-shell .vimeva-dashboard-header {
        border-radius: 22px;
    }

    .vimeva-panel-shell .quick-action,
    .vimeva-panel-shell .quick-action-card,
    .vimeva-panel-shell .vimeva-quick-action,
    .vimeva-panel-shell .student-action-card,
    .vimeva-panel-shell .dashboard-action-card {
        border-radius: 20px;
    }

    .vimeva-panel-shell .quick-action:hover,
    .vimeva-panel-shell .quick-action-card:hover,
    .vimeva-panel-shell .vimeva-quick-action:hover,
    .vimeva-panel-shell .student-action-card:hover,
    .vimeva-panel-shell .dashboard-action-card:hover,
    .vimeva-panel-shell .btn-primary:hover {
        transform: none;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Mobile Navigation & Responsive Shell Polish - 0.3.67
|--------------------------------------------------------------------------
| Visible mobile/tablet shell polish only. Routes, controllers, JS runtime,
| learning runtime, quiz runtime, completion runtime, progress calculations
| and certificate downloads are preserved.
*/

.vimeva-panel-shell,
.vimeva-student-dashboard,
.vimeva-learning-room {
    --vimeva-mobile-shell-bg: #f7f7fb;
    --vimeva-mobile-card-radius: 22px;
    --vimeva-mobile-sticky-bg: rgba(255,255,255,.94);
    --vimeva-mobile-border: rgba(124,34,222,.13);
    --vimeva-mobile-shadow: 0 18px 48px rgba(23,30,70,.08);
}

.vimeva-panel-shell .panel-sidebar,
.vimeva-panel-shell .sidebar,
.vimeva-panel-shell .student-sidebar,
.vimeva-panel-shell aside {
    -webkit-overflow-scrolling: touch;
}

.vimeva-panel-shell .panel-sidebar a,
.vimeva-panel-shell .sidebar a,
.vimeva-panel-shell .student-sidebar a,
.vimeva-panel-shell .navbar a,
.vimeva-panel-shell .top-navbar a,
.vimeva-panel-shell .btn,
.vimeva-learning-room .btn,
.vimeva-course-detail-premium .btn {
    min-height: 40px;
}

.vimeva-panel-shell .navbar,
.vimeva-panel-shell .top-navbar,
.vimeva-panel-shell .student-topbar,
.vimeva-learning-room [data-vimeva-learning-responsive-polish-header],
.vimeva-learning-room [data-vimeva-student-mobile-shell-learning-header] {
    backdrop-filter: blur(14px);
}

@media (max-width: 1199.98px) {
    .vimeva-panel-shell,
    .vimeva-student-dashboard {
        background: var(--vimeva-mobile-shell-bg);
    }

    .vimeva-panel-shell .container,
    .vimeva-panel-shell .container-fluid,
    .vimeva-student-dashboard .container,
    .vimeva-student-dashboard .container-fluid {
        max-width: 100%;
    }

    .vimeva-panel-shell .course-card,
    .vimeva-panel-shell .webinar-card,
    .vimeva-panel-shell .vimeva-course-card,
    .vimeva-panel-shell .panel-card,
    .vimeva-panel-shell .card {
        border-radius: var(--vimeva-mobile-card-radius);
    }
}

@media (max-width: 991.98px) {
    .vimeva-panel-shell .navbar,
    .vimeva-panel-shell .top-navbar,
    .vimeva-panel-shell .student-topbar {
        position: sticky;
        top: 0;
        z-index: 40;
        background: var(--vimeva-mobile-sticky-bg);
        border-bottom: 1px solid var(--vimeva-mobile-border);
        box-shadow: 0 12px 30px rgba(23,30,70,.055);
    }

    .vimeva-panel-shell .panel-sidebar,
    .vimeva-panel-shell .sidebar,
    .vimeva-panel-shell .student-sidebar {
        box-shadow: var(--vimeva-mobile-shadow);
    }

    .vimeva-panel-shell .row {
        row-gap: 18px;
    }

    .vimeva-course-detail-premium .row,
    .vimeva-learning-room .row {
        row-gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .vimeva-panel-shell .content,
    .vimeva-panel-shell .panel-content,
    .vimeva-panel-shell .student-content,
    .vimeva-student-dashboard .content,
    .vimeva-student-dashboard .panel-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vimeva-panel-shell .dashboard-header,
    .vimeva-panel-shell .student-dashboard-header,
    .vimeva-panel-shell .vimeva-dashboard-header {
        padding: 18px !important;
        border-radius: 22px;
    }

    .vimeva-panel-shell .quick-action,
    .vimeva-panel-shell .quick-action-card,
    .vimeva-panel-shell .vimeva-quick-action,
    .vimeva-panel-shell .student-action-card,
    .vimeva-panel-shell .dashboard-action-card,
    .vimeva-panel-shell .course-card,
    .vimeva-panel-shell .webinar-card,
    .vimeva-panel-shell .vimeva-course-card,
    .vimeva-panel-shell .panel-card,
    .vimeva-panel-shell .card {
        border-radius: 20px;
    }

    .vimeva-panel-shell .btn,
    .vimeva-course-detail-premium .btn,
    .vimeva-learning-room .btn {
        min-height: 44px;
        justify-content: center;
    }

    .vimeva-panel-shell .btn-block-mobile,
    .vimeva-panel-shell .vimeva-primary-cta,
    .vimeva-course-detail-premium .btn-primary {
        width: 100%;
    }

    .vimeva-panel-shell .table-responsive,
    .vimeva-student-dashboard .table-responsive {
        border-radius: 18px;
        border: 1px solid var(--vimeva-mobile-border);
    }
}

@media (max-width: 575.98px) {
    .vimeva-panel-shell h1,
    .vimeva-panel-shell .h1,
    .vimeva-student-dashboard h1 {
        font-size: 24px;
        line-height: 1.18;
        letter-spacing: -.025em;
    }

    .vimeva-panel-shell h2,
    .vimeva-panel-shell .h2,
    .vimeva-student-dashboard h2 {
        font-size: 20px;
        line-height: 1.22;
    }

    .vimeva-panel-shell .course-card:hover,
    .vimeva-panel-shell .webinar-card:hover,
    .vimeva-panel-shell .vimeva-course-card:hover,
    .vimeva-panel-shell .quick-action:hover,
    .vimeva-panel-shell .quick-action-card:hover,
    .vimeva-panel-shell .dashboard-action-card:hover {
        transform: none;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Settings & Profile Shell Polish - 0.3.67
|--------------------------------------------------------------------------
| Visible settings/profile/account polish only. Routes, controllers, JS runtime,
| learning runtime, quiz runtime, completion runtime, progress calculations and
| certificate downloads are preserved.
*/

.vimeva-panel-shell,
.vimeva-student-dashboard {
    --vimeva-settings-bg: linear-gradient(180deg, rgba(255,255,255,.99), rgba(250,248,253,.97));
    --vimeva-settings-border: rgba(124,34,222,.14);
    --vimeva-settings-border-strong: rgba(124,34,222,.28);
    --vimeva-settings-shadow: 0 18px 48px rgba(23,30,70,.055);
    --vimeva-settings-shadow-hover: 0 24px 70px rgba(23,30,70,.09);
    --vimeva-settings-radius: 24px;
    --vimeva-settings-label: #667085;
    --vimeva-settings-title: #151827;
}

.vimeva-panel-shell .settings-card,
.vimeva-panel-shell .setting-card,
.vimeva-panel-shell .profile-card,
.vimeva-panel-shell .account-card,
.vimeva-panel-shell .notification-card,
.vimeva-panel-shell .security-card,
.vimeva-panel-shell .billing-card,
.vimeva-panel-shell .panel-form-card,
.vimeva-panel-shell .form-card,
.vimeva-panel-shell .user-profile-card {
    border: 1px solid var(--vimeva-settings-border);
    border-radius: var(--vimeva-settings-radius);
    background: var(--vimeva-settings-bg);
    box-shadow: var(--vimeva-settings-shadow);
}

.vimeva-panel-shell .settings-card:hover,
.vimeva-panel-shell .setting-card:hover,
.vimeva-panel-shell .profile-card:hover,
.vimeva-panel-shell .account-card:hover,
.vimeva-panel-shell .notification-card:hover,
.vimeva-panel-shell .security-card:hover,
.vimeva-panel-shell .billing-card:hover,
.vimeva-panel-shell .panel-form-card:hover,
.vimeva-panel-shell .form-card:hover,
.vimeva-panel-shell .user-profile-card:hover {
    border-color: var(--vimeva-settings-border-strong);
    box-shadow: var(--vimeva-settings-shadow-hover);
}

.vimeva-panel-shell .settings-tabs,
.vimeva-panel-shell .setting-tabs,
.vimeva-panel-shell .profile-tabs,
.vimeva-panel-shell .account-tabs,
.vimeva-panel-shell .nav-tabs {
    gap: 8px;
    border-bottom-color: rgba(124,34,222,.10);
}

.vimeva-panel-shell .settings-tabs .nav-link,
.vimeva-panel-shell .setting-tabs .nav-link,
.vimeva-panel-shell .profile-tabs .nav-link,
.vimeva-panel-shell .account-tabs .nav-link,
.vimeva-panel-shell .nav-tabs .nav-link {
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--vimeva-settings-label);
    font-weight: 700;
    transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.vimeva-panel-shell .settings-tabs .nav-link.active,
.vimeva-panel-shell .setting-tabs .nav-link.active,
.vimeva-panel-shell .profile-tabs .nav-link.active,
.vimeva-panel-shell .account-tabs .nav-link.active,
.vimeva-panel-shell .nav-tabs .nav-link.active {
    border-color: var(--vimeva-settings-border);
    background: rgba(124,34,222,.08);
    color: #7c22de;
    box-shadow: 0 10px 24px rgba(124,34,222,.08);
}

.vimeva-panel-shell .form-group label,
.vimeva-panel-shell .form-label,
.vimeva-panel-shell label {
    color: var(--vimeva-settings-title);
    font-weight: 700;
}

.vimeva-panel-shell .form-control,
.vimeva-panel-shell .custom-select,
.vimeva-panel-shell select,
.vimeva-panel-shell textarea,
.vimeva-panel-shell input[type="text"],
.vimeva-panel-shell input[type="email"],
.vimeva-panel-shell input[type="password"],
.vimeva-panel-shell input[type="number"],
.vimeva-panel-shell input[type="tel"] {
    border-color: rgba(124,34,222,.14);
    border-radius: 16px;
    background-color: rgba(255,255,255,.98);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.vimeva-panel-shell .form-control:focus,
.vimeva-panel-shell .custom-select:focus,
.vimeva-panel-shell select:focus,
.vimeva-panel-shell textarea:focus,
.vimeva-panel-shell input[type="text"]:focus,
.vimeva-panel-shell input[type="email"]:focus,
.vimeva-panel-shell input[type="password"]:focus,
.vimeva-panel-shell input[type="number"]:focus,
.vimeva-panel-shell input[type="tel"]:focus {
    border-color: rgba(124,34,222,.42);
    box-shadow: 0 0 0 4px rgba(124,34,222,.12);
}

.vimeva-panel-shell .settings-menu,
.vimeva-panel-shell .setting-menu,
.vimeva-panel-shell .profile-menu,
.vimeva-panel-shell .account-menu {
    border: 1px solid var(--vimeva-settings-border);
    border-radius: var(--vimeva-settings-radius);
    background: var(--vimeva-settings-bg);
    box-shadow: var(--vimeva-settings-shadow);
}

.vimeva-panel-shell .settings-menu a,
.vimeva-panel-shell .setting-menu a,
.vimeva-panel-shell .profile-menu a,
.vimeva-panel-shell .account-menu a {
    border-radius: 14px;
    min-height: 42px;
}

.vimeva-panel-shell .settings-menu a.active,
.vimeva-panel-shell .setting-menu a.active,
.vimeva-panel-shell .profile-menu a.active,
.vimeva-panel-shell .account-menu a.active {
    background: rgba(124,34,222,.08);
    color: #7c22de;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .vimeva-panel-shell .settings-card,
    .vimeva-panel-shell .setting-card,
    .vimeva-panel-shell .profile-card,
    .vimeva-panel-shell .account-card,
    .vimeva-panel-shell .notification-card,
    .vimeva-panel-shell .security-card,
    .vimeva-panel-shell .billing-card,
    .vimeva-panel-shell .panel-form-card,
    .vimeva-panel-shell .form-card,
    .vimeva-panel-shell .settings-menu,
    .vimeva-panel-shell .setting-menu,
    .vimeva-panel-shell .profile-menu,
    .vimeva-panel-shell .account-menu {
        border-radius: 20px;
    }
}

@media (max-width: 767.98px) {
    .vimeva-panel-shell .settings-tabs,
    .vimeva-panel-shell .setting-tabs,
    .vimeva-panel-shell .profile-tabs,
    .vimeva-panel-shell .account-tabs,
    .vimeva-panel-shell .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .vimeva-panel-shell .settings-tabs .nav-link,
    .vimeva-panel-shell .setting-tabs .nav-link,
    .vimeva-panel-shell .profile-tabs .nav-link,
    .vimeva-panel-shell .account-tabs .nav-link,
    .vimeva-panel-shell .nav-tabs .nav-link {
        white-space: nowrap;
    }

    .vimeva-panel-shell .form-control,
    .vimeva-panel-shell .custom-select,
    .vimeva-panel-shell select,
    .vimeva-panel-shell textarea,
    .vimeva-panel-shell input {
        min-height: 44px;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Student Settings Layout Stability - 0.3.67
|--------------------------------------------------------------------------
| CSS-only stability pass for settings/profile/account pages. Prevents
| settings cards, tabs and forms from collapsing into unreadable narrow
| columns. Routes, controllers, database and runtime are preserved.
*/

.vimeva-panel-shell,
.vimeva-student-dashboard {
    --vimeva-settings-layout-gap: 24px;
    --vimeva-settings-sidebar-width: 260px;
    --vimeva-settings-content-min: 0;
    --vimeva-settings-card-min: 280px;
    --vimeva-settings-field-min: 220px;
}

.vimeva-panel-shell .vimeva-settings-layout,
.vimeva-panel-shell .settings-layout,
.vimeva-panel-shell .setting-layout,
.vimeva-panel-shell .profile-layout,
.vimeva-panel-shell .account-layout {
    display: grid;
    grid-template-columns: minmax(220px, var(--vimeva-settings-sidebar-width)) minmax(0, 1fr);
    gap: var(--vimeva-settings-layout-gap);
    align-items: start;
}

.vimeva-panel-shell .vimeva-settings-main,
.vimeva-panel-shell .settings-main,
.vimeva-panel-shell .setting-main,
.vimeva-panel-shell .profile-main,
.vimeva-panel-shell .account-main {
    min-width: 0;
    width: 100%;
}

.vimeva-panel-shell .vimeva-settings-grid,
.vimeva-panel-shell .settings-grid,
.vimeva-panel-shell .setting-grid,
.vimeva-panel-shell .profile-grid,
.vimeva-panel-shell .account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--vimeva-settings-card-min), 1fr));
    gap: var(--vimeva-settings-layout-gap);
    align-items: stretch;
}

.vimeva-panel-shell .settings-card,
.vimeva-panel-shell .setting-card,
.vimeva-panel-shell .profile-card,
.vimeva-panel-shell .account-card,
.vimeva-panel-shell .notification-card,
.vimeva-panel-shell .security-card,
.vimeva-panel-shell .billing-card,
.vimeva-panel-shell .panel-form-card,
.vimeva-panel-shell .form-card,
.vimeva-panel-shell .user-profile-card {
    min-width: 0;
    overflow: hidden;
}

.vimeva-panel-shell .settings-card *,
.vimeva-panel-shell .setting-card *,
.vimeva-panel-shell .profile-card *,
.vimeva-panel-shell .account-card *,
.vimeva-panel-shell .notification-card *,
.vimeva-panel-shell .security-card *,
.vimeva-panel-shell .billing-card *,
.vimeva-panel-shell .panel-form-card *,
.vimeva-panel-shell .form-card *,
.vimeva-panel-shell .user-profile-card * {
    min-width: 0;
}

.vimeva-panel-shell .settings-card .row,
.vimeva-panel-shell .setting-card .row,
.vimeva-panel-shell .profile-card .row,
.vimeva-panel-shell .account-card .row,
.vimeva-panel-shell .panel-form-card .row,
.vimeva-panel-shell .form-card .row {
    row-gap: 18px;
}

.vimeva-panel-shell .settings-card p,
.vimeva-panel-shell .setting-card p,
.vimeva-panel-shell .profile-card p,
.vimeva-panel-shell .account-card p,
.vimeva-panel-shell .notification-card p,
.vimeva-panel-shell .security-card p,
.vimeva-panel-shell .billing-card p,
.vimeva-panel-shell .settings-card span,
.vimeva-panel-shell .setting-card span,
.vimeva-panel-shell .profile-card span,
.vimeva-panel-shell .account-card span,
.vimeva-panel-shell .notification-card span,
.vimeva-panel-shell .security-card span,
.vimeva-panel-shell .billing-card span {
    overflow-wrap: anywhere;
}

.vimeva-panel-shell .settings-tabs,
.vimeva-panel-shell .setting-tabs,
.vimeva-panel-shell .profile-tabs,
.vimeva-panel-shell .account-tabs,
.vimeva-panel-shell .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.vimeva-panel-shell .settings-tabs .nav-link,
.vimeva-panel-shell .setting-tabs .nav-link,
.vimeva-panel-shell .profile-tabs .nav-link,
.vimeva-panel-shell .account-tabs .nav-link,
.vimeva-panel-shell .nav-tabs .nav-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.vimeva-panel-shell .form-row,
.vimeva-panel-shell .settings-form-row,
.vimeva-panel-shell .profile-form-row,
.vimeva-panel-shell .account-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--vimeva-settings-field-min), 1fr));
    gap: 16px;
}

.vimeva-panel-shell .form-control,
.vimeva-panel-shell .custom-select,
.vimeva-panel-shell select,
.vimeva-panel-shell textarea,
.vimeva-panel-shell input[type="text"],
.vimeva-panel-shell input[type="email"],
.vimeva-panel-shell input[type="password"],
.vimeva-panel-shell input[type="number"],
.vimeva-panel-shell input[type="tel"] {
    width: 100%;
    max-width: 100%;
}

.vimeva-panel-shell .profile-avatar,
.vimeva-panel-shell .user-avatar,
.vimeva-panel-shell .settings-avatar {
    flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
    .vimeva-panel-shell,
    .vimeva-student-dashboard {
        --vimeva-settings-sidebar-width: 230px;
        --vimeva-settings-layout-gap: 20px;
        --vimeva-settings-card-min: 260px;
    }
}

@media (max-width: 991.98px) {
    .vimeva-panel-shell .vimeva-settings-layout,
    .vimeva-panel-shell .settings-layout,
    .vimeva-panel-shell .setting-layout,
    .vimeva-panel-shell .profile-layout,
    .vimeva-panel-shell .account-layout {
        grid-template-columns: 1fr;
    }

    .vimeva-panel-shell .settings-menu,
    .vimeva-panel-shell .setting-menu,
    .vimeva-panel-shell .profile-menu,
    .vimeva-panel-shell .account-menu {
        position: relative;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .vimeva-panel-shell,
    .vimeva-student-dashboard {
        --vimeva-settings-layout-gap: 16px;
        --vimeva-settings-card-min: min(100%, 240px);
        --vimeva-settings-field-min: min(100%, 200px);
    }

    .vimeva-panel-shell .settings-tabs,
    .vimeva-panel-shell .setting-tabs,
    .vimeva-panel-shell .profile-tabs,
    .vimeva-panel-shell .account-tabs,
    .vimeva-panel-shell .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
    }

    .vimeva-panel-shell .settings-tabs .nav-link,
    .vimeva-panel-shell .setting-tabs .nav-link,
    .vimeva-panel-shell .profile-tabs .nav-link,
    .vimeva-panel-shell .account-tabs .nav-link,
    .vimeva-panel-shell .nav-tabs .nav-link {
        flex: 0 0 auto;
    }

    .vimeva-panel-shell .vimeva-settings-grid,
    .vimeva-panel-shell .settings-grid,
    .vimeva-panel-shell .setting-grid,
    .vimeva-panel-shell .profile-grid,
    .vimeva-panel-shell .account-grid,
    .vimeva-panel-shell .form-row,
    .vimeva-panel-shell .settings-form-row,
    .vimeva-panel-shell .profile-form-row,
    .vimeva-panel-shell .account-form-row {
        grid-template-columns: 1fr;
    }
}


/*
|--------------------------------------------------------------------------
| Vimeva LMS Admin Settings Workspace Stabilization - 0.3.67
|--------------------------------------------------------------------------
| Admin/platform settings workspace stability. Removes excessive top whitespace,
| gives settings a clear three-column workspace, keeps content scrollable,
| avoids squeezed/double-looking tabs and preserves bottom space for save buttons.
| CSS-only; routes, controllers, database and runtime are preserved.
*/

:root {
    --vimeva-admin-settings-top-offset: 18px;
    --vimeva-admin-settings-page-gap: 20px;
    --vimeva-admin-settings-left-width: 280px;
    --vimeva-admin-settings-right-width: 260px;
    --vimeva-admin-settings-card-radius: 18px;
    --vimeva-admin-settings-border: rgba(15, 23, 42, .08);
    --vimeva-admin-settings-soft-bg: #f7f8fb;
    --vimeva-admin-settings-card-bg: #ffffff;
    --vimeva-admin-settings-shadow: 0 18px 44px rgba(15, 23, 42, .055);
}

/* Pull the admin settings workspace up so it starts under the topbar, not halfway down the screen. */
body .vimeva-panel-shell .vimeva-admin-settings-workspace,
body .vimeva-panel-shell .admin-settings-workspace,
body .vimeva-panel-shell .platform-settings-workspace,
body .vimeva-panel-shell .settings-workspace,
body .vimeva-panel-shell .panel-settings-workspace {
    margin-top: var(--vimeva-admin-settings-top-offset) !important;
}

/* Broad fallback for settings pages that do not yet have a dedicated wrapper class. */
body .vimeva-panel-shell [data-vimeva-admin-settings-workspace-index],
body .vimeva-panel-shell [data-vimeva-student-settings-layout-stability-index],
body .vimeva-panel-shell [data-vimeva-student-settings-shell-resources-views-design-1-panel-settings-index-blade-php] {
    margin-top: var(--vimeva-admin-settings-top-offset) !important;
}

/* If the settings page lives inside old dashboard spacing wrappers, neutralize the huge top padding. */
body .vimeva-panel-shell .settings-page,
body .vimeva-panel-shell .panel-settings-page,
body .vimeva-panel-shell .admin-settings-page,
body .vimeva-panel-shell .platform-settings-page {
    padding-top: 0 !important;
}

/* Stable settings workspace grid: menu / main content / status sidecards. */
.vimeva-panel-shell .admin-settings-grid,
.vimeva-panel-shell .platform-settings-grid,
.vimeva-panel-shell .vimeva-admin-settings-grid,
.vimeva-panel-shell .vimeva-settings-workspace-grid,
.vimeva-panel-shell .settings-workspace-grid {
    display: grid;
    grid-template-columns: minmax(240px, var(--vimeva-admin-settings-left-width)) minmax(0, 1fr) minmax(220px, var(--vimeva-admin-settings-right-width));
    gap: var(--vimeva-admin-settings-page-gap);
    align-items: start;
    width: 100%;
}

.vimeva-panel-shell .admin-settings-main,
.vimeva-panel-shell .platform-settings-main,
.vimeva-panel-shell .vimeva-admin-settings-main,
.vimeva-panel-shell .settings-workspace-main {
    min-width: 0;
    width: 100%;
}

.vimeva-panel-shell .admin-settings-card,
.vimeva-panel-shell .platform-settings-card,
.vimeva-panel-shell .vimeva-admin-settings-card,
.vimeva-panel-shell .settings-workspace-card,
.vimeva-panel-shell .settings-card,
.vimeva-panel-shell .setting-card {
    background: var(--vimeva-admin-settings-card-bg);
    border: 1px solid var(--vimeva-admin-settings-border);
    border-radius: var(--vimeva-admin-settings-card-radius);
    box-shadow: var(--vimeva-admin-settings-shadow);
    min-width: 0;
    overflow: hidden;
}

/* Admin settings content must scroll neatly and leave room for save/submit buttons. */
.vimeva-panel-shell .admin-settings-scroll,
.vimeva-panel-shell .platform-settings-scroll,
.vimeva-panel-shell .vimeva-admin-settings-scroll,
.vimeva-panel-shell .settings-scroll,
.vimeva-panel-shell .settings-card .tab-content,
.vimeva-panel-shell .setting-card .tab-content {
    min-height: 420px;
    max-height: calc(100vh - 230px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 96px;
    scroll-padding-bottom: 110px;
    -webkit-overflow-scrolling: touch;
}

/* Save button visibility: keep buttons from sticking to the very bottom edge. */
.vimeva-panel-shell .admin-settings-actions,
.vimeva-panel-shell .platform-settings-actions,
.vimeva-panel-shell .vimeva-admin-settings-actions,
.vimeva-panel-shell .settings-actions,
.vimeva-panel-shell .settings-card button[type="submit"],
.vimeva-panel-shell .setting-card button[type="submit"],
.vimeva-panel-shell .settings-card .btn-primary,
.vimeva-panel-shell .setting-card .btn-primary {
    margin-bottom: 18px;
}

/* Tabs: one clear navigation level visually. Old nested tabs become calmer and scrollable, not squeezed. */
.vimeva-panel-shell .admin-settings-tabs,
.vimeva-panel-shell .platform-settings-tabs,
.vimeva-panel-shell .settings-tabs,
.vimeva-panel-shell .setting-tabs,
.vimeva-panel-shell .profile-tabs,
.vimeva-panel-shell .account-tabs,
.vimeva-panel-shell .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 14px;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .07);
    scrollbar-width: thin;
}

.vimeva-panel-shell .admin-settings-tabs .nav-link,
.vimeva-panel-shell .platform-settings-tabs .nav-link,
.vimeva-panel-shell .settings-tabs .nav-link,
.vimeva-panel-shell .setting-tabs .nav-link,
.vimeva-panel-shell .profile-tabs .nav-link,
.vimeva-panel-shell .account-tabs .nav-link,
.vimeva-panel-shell .nav-tabs .nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: auto;
    border-radius: 12px;
    padding: 10px 14px;
}

/* Secondary/nested tab bars: do not look like a second full menu block. */
.vimeva-panel-shell .settings-card .tab-content .nav-tabs,
.vimeva-panel-shell .setting-card .tab-content .nav-tabs,
.vimeva-panel-shell .admin-settings-card .tab-content .nav-tabs,
.vimeva-panel-shell .platform-settings-card .tab-content .nav-tabs {
    margin: 16px 18px 18px;
    padding: 8px;
    border: 1px solid rgba(15,23,42,.07);
    border-radius: 16px;
    background: var(--vimeva-admin-settings-soft-bg);
}

.vimeva-panel-shell .settings-card .tab-content .nav-tabs .nav-link,
.vimeva-panel-shell .setting-card .tab-content .nav-tabs .nav-link,
.vimeva-panel-shell .admin-settings-card .tab-content .nav-tabs .nav-link,
.vimeva-panel-shell .platform-settings-card .tab-content .nav-tabs .nav-link {
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
}

/* Forms should use readable widths. */
.vimeva-panel-shell .admin-settings-card .form-group,
.vimeva-panel-shell .platform-settings-card .form-group,
.vimeva-panel-shell .settings-card .form-group,
.vimeva-panel-shell .setting-card .form-group {
    max-width: 560px;
}

.vimeva-panel-shell .admin-settings-card textarea,
.vimeva-panel-shell .platform-settings-card textarea,
.vimeva-panel-shell .settings-card textarea,
.vimeva-panel-shell .setting-card textarea {
    min-height: 130px;
}

/* Right status cards remain compact and aligned near the top. */
.vimeva-panel-shell .admin-settings-aside,
.vimeva-panel-shell .platform-settings-aside,
.vimeva-panel-shell .settings-aside,
.vimeva-panel-shell .vimeva-admin-settings-aside {
    display: grid;
    gap: 16px;
    align-self: start;
}

.vimeva-panel-shell .admin-settings-aside .card,
.vimeva-panel-shell .platform-settings-aside .card,
.vimeva-panel-shell .settings-aside .card,
.vimeva-panel-shell .vimeva-admin-settings-aside .card {
    border-radius: var(--vimeva-admin-settings-card-radius);
    border: 1px solid var(--vimeva-admin-settings-border);
    box-shadow: 0 14px 34px rgba(15,23,42,.045);
}

/* Prevent embedded preview/page-not-found frames from visually destroying settings pages. */
.vimeva-panel-shell .admin-settings-preview,
.vimeva-panel-shell .platform-settings-preview,
.vimeva-panel-shell .settings-preview,
.vimeva-panel-shell iframe {
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 1399.98px) {
    .vimeva-panel-shell .admin-settings-grid,
    .vimeva-panel-shell .platform-settings-grid,
    .vimeva-panel-shell .vimeva-admin-settings-grid,
    .vimeva-panel-shell .vimeva-settings-workspace-grid,
    .vimeva-panel-shell .settings-workspace-grid {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(210px, 240px);
    }
}

@media (max-width: 1199.98px) {
    .vimeva-panel-shell .admin-settings-grid,
    .vimeva-panel-shell .platform-settings-grid,
    .vimeva-panel-shell .vimeva-admin-settings-grid,
    .vimeva-panel-shell .vimeva-settings-workspace-grid,
    .vimeva-panel-shell .settings-workspace-grid {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    }

    .vimeva-panel-shell .admin-settings-aside,
    .vimeva-panel-shell .platform-settings-aside,
    .vimeva-panel-shell .settings-aside,
    .vimeva-panel-shell .vimeva-admin-settings-aside {
        grid-column: 1 / -1;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 991.98px) {
    :root {
        --vimeva-admin-settings-top-offset: 12px;
        --vimeva-admin-settings-page-gap: 16px;
    }

    .vimeva-panel-shell .admin-settings-grid,
    .vimeva-panel-shell .platform-settings-grid,
    .vimeva-panel-shell .vimeva-admin-settings-grid,
    .vimeva-panel-shell .vimeva-settings-workspace-grid,
    .vimeva-panel-shell .settings-workspace-grid {
        grid-template-columns: 1fr;
    }

    .vimeva-panel-shell .admin-settings-scroll,
    .vimeva-panel-shell .platform-settings-scroll,
    .vimeva-panel-shell .vimeva-admin-settings-scroll,
    .vimeva-panel-shell .settings-scroll,
    .vimeva-panel-shell .settings-card .tab-content,
    .vimeva-panel-shell .setting-card .tab-content {
        max-height: none;
        min-height: 0;
        overflow: visible;
        padding-bottom: 90px;
    }
}
