/* input(1737,1): run-time error CSS1019: Unexpected token, found '@'
input(1836,1): run-time error CSS1019: Unexpected token, found '@'
input(2017,1): run-time error CSS1019: Unexpected token, found '@' */
/* ============================================================
   MERGED STYLESHEET
   Digabung dari beberapa file CSS, duplikat dihapus,
   konflik nama diselesaikan dengan suffix deskriptif.
   ============================================================ */

/* ── Google Fonts (jika digunakan via @import) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Root Variables)
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary: #003874;
    --color-primary-container: #1a4f95;
    --color-primary-fixed: #d6e3ff;
    --color-secondary: #505f76;
    --color-secondary-container: #d0e1fb;
    --color-on-secondary-container: #38485d;
    --color-outline-variant: #c3c6d2;
    /* Surface Colors */
    --color-surface: #f7f9fb;
    --color-surface-container-low: #f2f4f6;
    --color-surface-container: #eceef0;
    --color-surface-container-high: #e6e8ea;
    --color-surface-container-highest: #e0e3e5;
    /* Text Colors */
    --color-on-surface-variant: #424751;
    --color-on-primary: #ffffff;
    --color-on-secondary: #ffffff;
    /* Legacy aliases (kompatibilitas) */
    --primary-color: #1A4F95;
    --primary-container: #d6e3ff;
    --on-primary-container: #001b3e;
    --secondary-color: #505f76;
    --surface-container: #eceef0;
    /* Bootstrap overrides */
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-body-bg: #f7f9fb;
    --bs-body-color: #191c1e;
}


/* ============================================================
   2. BASE / RESET
   ============================================================ */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--color-surface);
    font-family: var(--bs-body-font-family);
    color: #191c1e;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-manrope {
    font-family: 'Manrope', sans-serif;
}

.font-manrope {
    font-family: 'Manrope', sans-serif;
}

.text-primary-custom {
    color: var(--color-primary);
}

.bg-primary-custom {
    background-color: var(--color-primary);
}

.bg-primary-container {
    background-color: var(--primary-container);
    color: var(--on-primary-container);
}


/* ============================================================
   3. MATERIAL SYMBOLS
   ============================================================ */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    font-size: 20px;
}


/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
    border-bottom: 1px solid #e2e8f0;
    background-color: #fff !important;
    padding: 0.75rem 0;
    z-index: 1050;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover {
    opacity: 0.85;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563eb 100%);
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 10px rgba(26, 79, 149, 0.15);
}

.brand-logo .material-symbols-outlined {
    font-size: 22px;
    font-variation-settings: 'FILL' 1, 'wght' 400;
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 1px;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #94a3b8 !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.nav-link.active {
    color: white !important;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 4px;
}

.navbar-nav {
    align-items: center;
}

.btn-icon {
    background: none;
    border: none;
    padding: 0.4rem;
    color: #64748b;
    transition: color 0.2s;
    line-height: 1;
}

.btn-icon:hover {
    color: var(--color-primary);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    object-fit: cover;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

/* -- Primary filled button -- */
.btn-primary-custom {
    background-color: var(--color-primary);
    color: var(--color-on-primary);
    border: none;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: filter 0.2s;
}

.btn-primary-custom:hover {
    filter: brightness(1.15);
    color: #fff;
}

/* -- Outline button -- */
.btn-outline-custom {
    border: 1px solid #737782;
    color: var(--color-secondary);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.btn-outline-custom:hover {
    background: var(--color-surface-container);
}

/* -- Assessment start button -- */
.btn-start {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-bottom: 2px solid #002559;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.625rem 1.5rem;
    border-radius: 0.25rem;
    transition: opacity 0.2s, transform 0.1s;
    text-decoration: none;
}

.btn-start:hover {
    opacity: 0.9;
    color: #fff;
    text-decoration: none;
}

.btn-start:active {
    transform: translateY(1px);
}

/* -- Submit button -- */
.btn-submit {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-bottom: 2px solid #002559;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 0.35rem;
    transition: opacity 0.2s, transform 0.1s;
    font-family: 'Manrope', sans-serif;
}

.btn-submit:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

/* -- Secondary outline button -- */
.btn-secondary-outline {
    background: none;
    border: 1.5px solid var(--color-outline-variant);
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 0.35rem;
    transition: all 0.2s;
}

.btn-secondary-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* -- CTA support button -- */
.btn-cta-support {
    background: #fff;
    color: var(--color-primary);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 0.25rem;
    transition: opacity 0.2s;
}

.btn-cta-support:hover {
    opacity: 0.9;
    color: var(--color-primary);
}


/* ============================================================
   6. CARDS (General)
   ============================================================ */
.card-custom {
    background: #fff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
}

/* Card top accent bars */
.card-top-bar-primary {
    height: 6px;
    background: var(--color-primary);
}

.card-top-bar-secondary {
    height: 6px;
    background: var(--color-secondary);
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-secondary);
}


/* ============================================================
   8. ASSESSMENT CARDS
   ============================================================ */
.assessment-card {
    background: #fff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem;
    transition: border-color 0.3s;
}

.assessment-card:hover {
    border-color: var(--color-primary-container);
}

.assessment-icon {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-icon.bg-primary-fixed {
    background-color: var(--color-primary-fixed);
}

.assessment-icon.bg-secondary-container {
    background-color: var(--color-secondary-container);
}

.assessment-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.assessment-icon.bg-primary-fixed .material-symbols-outlined {
    color: var(--color-primary);
}

.assessment-icon.bg-secondary-container .material-symbols-outlined {
    color: var(--color-on-secondary-container);
}

.assessment-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-primary);
}

.assessment-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-on-surface-variant);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-on-secondary-container);
    font-size: 0.875rem;
    font-weight: 500;
}

.meta-item .material-symbols-outlined {
    font-size: 1rem;
}


/* ============================================================
   9. PROGRESS CARD
   ============================================================ */
.progress-card {
    background-color: var(--color-surface-container-low);
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem;
}

.progress-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.progress-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    letter-spacing: 0.01em;
}

.progress-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

.progress {
    height: 12px;
    border-radius: 999px;
    background-color: var(--color-surface-container-highest);
}

.progress-bar {
    background-color: var(--color-primary);
    border-radius: 999px;
}

/* Sticky progress bar (used in form pages) */
.progress-sticky {
    background: #fff;
    border-bottom: 1px solid var(--color-outline-variant);
    padding: 0.75rem 0;
    position: sticky;
    top: 56px;
    z-index: 1030;
}

.progress-sticky .progress {
    height: 8px;
}

.progress-sticky .progress-bar {
    transition: width 0.3s ease;
}

.progress-sticky .prog-label {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.progress-sticky .prog-count {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}


/* ============================================================
   10. MILESTONE ITEMS
   ============================================================ */
.milestone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--color-outline-variant);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.milestone-icon .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.milestone-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.01em;
    line-height: 1;
}

.milestone-sub {
    font-size: 0.75rem;
    color: var(--color-secondary);
    line-height: 1.4;
}


/* ============================================================
   11. CTA CARD
   ============================================================ */
.cta-card {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 0.5rem;
}

.cta-card h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-card p {
    font-size: 0.75rem;
    opacity: 0.9;
}


/* ============================================================
   12. SECTION TITLES & SPACING
   ============================================================ */
.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.section-gap {
    margin-bottom: 3rem;
}


/* ============================================================
   13. ACTIVITY TABLE
   ============================================================ */
.activity-table-wrapper {
    background: #fff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem;
    overflow-x: auto;
}

.activity-table thead {
    background-color: var(--color-surface-container-low);
    border-bottom: 1px solid var(--color-outline-variant);
}

.activity-table th {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    letter-spacing: 0.01em;
    padding: 1rem 1.5rem;
}

.activity-table td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    vertical-align: middle;
    border-color: var(--color-outline-variant);
}

.activity-table tbody tr:hover {
    background-color: #fafbfc;
}

/* Status badges */
.badge-completed {
    background-color: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.badge-notcompleted {
    background-color: darkred;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.result-value {
    font-weight: 600;
    color: var(--color-primary);
}


/* ============================================================
   14. INSTRUCTION BANNER
   ============================================================ */
.instruction-banner {
    background-color: var(--color-primary-fixed);
    border: 1px solid #b8d0f5;
    border-radius: 0.5rem;
}

.instruction-banner h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.instruction-banner p {
    font-size: 0.9rem;
    color: var(--color-on-secondary-container);
    line-height: 1.6;
    margin-bottom: 0;
}


/* ============================================================
   15. SCALE BADGES
   ============================================================ */
.scale-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.scale-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid;
}

/* Likert scale badges (1–5) */
.scale-1 {
    background: #fff0f0;
    color: #b91c1c;
    border-color: #fca5a5;
}

.scale-2 {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fdba74;
}

.scale-3 {
    background: #fefce8;
    color: #854d0e;
    border-color: #fde047;
}

.scale-4 {
    background: #f0fdf4;
    color: #15803d;
    border-color: #86efac;
}

.scale-5 {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #93c5fd;
}

/* Score-input scale badges (0 / ok / 10) */
.scale-0 {
    background: #f8fafc;
    color: #475569;
    border-color: #cbd5e1;
}

.scale-ok {
    background: #f0fdf4;
    color: #15803d;
    border-color: #86efac;
}

.scale-10 {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #93c5fd;
}


/* ============================================================
   16. FORM CARDS & SECTION HEADERS
   ============================================================ */
.form-card {
    background: #fff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem;
}

/* Note: .section-header used inside form cards — separate from generic section headers */
.section-header {
    background-color: var(--color-surface-container-low);
    border-bottom: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem 1.5rem;
}

.section-header h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-header span,
.section-header .q-count {
    font-size: 0.78rem;
    color: var(--color-secondary);
}


/* ============================================================
   17. QUESTION ROWS
   ============================================================ */
.question-row {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-outline-variant);
    transition: background 0.15s;
}

.question-row:last-child {
    border-bottom: none;
}

.question-row:hover {
    background-color: #fafbfc;
}

.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-primary-fixed);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.question-code {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-fixed);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.question-text {
    font-size: 0.9375rem;
    color: #191c1e;
    line-height: 1.5;
}


/* ============================================================
   18. LIKERT RADIO GROUP
   ============================================================ */
.likert-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.likert-option {
    flex: 1;
    min-width: 48px;
}

.likert-option input[type="radio"] {
    display: none;
}

.likert-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    height: 72px;
    padding: 0.4rem 0.25rem;
    border: 1.5px solid var(--color-outline-variant);
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: #fff;
    width: 100%;
    text-align: center;
    user-select: none;
    box-sizing: border-box;
}

.likert-option label:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-fixed);
    color: var(--color-primary);
}

.likert-option label .scale-num {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.likert-option label .scale-text {
    font-size: 0.60rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.25;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

/* Checked states per value */
.likert-option input[value="1"]:checked+label {
    background: #fee2e2;
    border-color: #dc2626;
    color: #b91c1c;
}

.likert-option input[value="2"]:checked+label {
    background: #ffedd5;
    border-color: #ea580c;
    color: #c2410c;
}

.likert-option input[value="3"]:checked+label {
    background: #fef9c3;
    border-color: #ca8a04;
    color: #854d0e;
}

.likert-option input[value="4"]:checked+label {
    background: #dcfce7;
    border-color: #16a34a;
    color: #15803d;
}

.likert-option input[value="5"]:checked+label {
    background: #dbeafe;
    border-color: #2563eb;
    color: #1d4ed8;
}

/* Answered state */
.question-row.answered .likert-option label {
    opacity: 0.7;
}

.question-row.answered .likert-option input:checked+label {
    opacity: 1;
}

@media (max-width: 575px) {
    .likert-option label .scale-text {
        display: none;
    }

    .likert-option label {
        padding: 0.5rem 0;
    }
}


/* ============================================================
   19. SCORE INPUT (Points-based questions)
   ============================================================ */
.score-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.score-input-wrap label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
    margin: 0;
}

.score-input {
    width: 80px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 1.5px solid var(--color-outline-variant);
    border-radius: 0.4rem;
    padding: 0.35rem 0.5rem;
    transition: border-color 0.15s;
    outline: none;
}

.score-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 56, 116, 0.1);
}

.score-input.is-over {
    border-color: #dc2626;
    color: #b91c1c;
    background: #fff0f0;
}

.score-input.is-exact {
    border-color: #16a34a;
}

/* Points counter badge */
.points-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1.5px solid var(--color-outline-variant);
    background: #fff;
    color: var(--color-secondary);
    transition: all 0.2s;
}

.points-counter.exact {
    background: #dcfce7;
    border-color: #16a34a;
    color: #15803d;
}

.points-counter.over {
    background: #fee2e2;
    border-color: #dc2626;
    color: #b91c1c;
}

.points-counter.partial {
    background: #fef9c3;
    border-color: #ca8a04;
    color: #854d0e;
}


/* ============================================================
   20. INFO FIELDS
   ============================================================ */
.info-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-on-secondary-container);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

/* Disabled state (dashboard read-only) */
.info-field .form-control:disabled {
    background-color: #fff;
    border-color: var(--color-outline-variant);
    color: #191c1e;
    font-weight: 500;
    opacity: 1;
}

/* Editable state (form pages) */
.info-field .form-control {
    border-color: var(--color-outline-variant);
    font-size: 0.9rem;
}

.info-field .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 56, 116, 0.1);
}


/* ============================================================
   21. ROLE HIERARCHY BOXES
   ============================================================ */
.role-preferred {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.role-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0.625rem 0.875rem;
    border-radius: 0.25rem;
    border: 1px solid #bfdbfe;
    margin-bottom: 0.5rem;
}

.role-item:last-child {
    margin-bottom: 0;
}

.role-item .role-pct {
    color: var(--color-primary);
    font-weight: 700;
}

.role-manageable {
    background: var(--color-surface-container-low);
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.role-tag {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.role-least {
    background: var(--color-surface-container);
    border-radius: 0.5rem;
    padding: 1.25rem;
    opacity: 0.75;
}

.role-tag-least {
    display: inline-block;
    border: 1px solid var(--color-outline-variant);
    border-radius: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-style: italic;
    margin: 0.25rem;
}


/* ============================================================
   22. RADAR CHART
   ============================================================ */
.radar-chart-container {
    max-width: 100%;
    min-height: 200px;
    margin: 0 auto;
}

.radar-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-label-top {
    position: absolute;
    top: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.radar-label-bottom {
    position: absolute;
    bottom: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.radar-label-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.75rem;
    font-weight: 500;
}

.radar-label-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.75rem;
    font-weight: 500;
}


/* ============================================================
   23. ROADMAP
   ============================================================ */
.roadmap-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e3e5;
    z-index: 0;
}

.roadmap-step {
    position: relative;
    z-index: 1;
    background: white;
}


/* ============================================================
   24. SYNERGY SECTION
   ============================================================ */
.synergy-section {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
}

.synergy-image-col {
    position: relative;
    min-height: 300px;
}

.synergy-image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.synergy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 56, 116, 0.4);
    backdrop-filter: blur(4px);
}

.synergy-image-content {
    position: relative;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.synergy-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    padding: 1rem;
}


/* ============================================================
   25. ICON BOXES
   ============================================================ */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-box-primary {
    background: #eff6ff;
    color: var(--color-primary);
}

.icon-box-secondary {
    background: #f8fafc;
    color: var(--color-secondary);
}


/* ============================================================
   26. STATUS INDICATORS
   ============================================================ */
.status-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}


/* ============================================================
   27. BOTTOM / MOBILE NAVIGATION
   ============================================================ */

/* Variant A — fixed bottom nav (result pages) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1050;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    gap: 2px;
}

.bottom-nav-item.active {
    color: var(--color-primary);
}

.bottom-nav-item:not(.active) {
    color: #94a3b8;
}

.bottom-nav-item i {
    font-size: 1.3rem;
}

/* Variant B — mobile-nav (assessment pages) */
.mobile-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1030;
}


/* ============================================================
   28. FOOTER
   ============================================================ */
footer {
    background-color: var(--color-surface-container-low);
    border-top: 1px solid var(--color-outline-variant);
}

.footer-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #94a3b8;
}

.footer-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-secondary);
}

/* ============================================================
   29. RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 992px) {
    .hero-section {
        padding: 5rem 0;
        text-align: center;
    }

    .hero-section .col-lg-7 {
        background-image: none !important;
        /* Hide circle background on mobile to avoid overlap */
    }

    .hero-section .lead {
        padding-right: 0 !important;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .nucleus-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .navbar-brand {
        max-width: none;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .brand-logo .material-symbols-outlined {
        font-size: 18px;
    }

    .brand-main {
        font-size: 1rem;
    }

    .brand-sub {
        font-size: 0.6rem;
    }

    .display-4 {
        font-size: 1.8rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem !important;
        padding: 0 1rem;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
    }

    .navbar {
        padding: 0.5rem 1rem !important;
    }

    .navbar-brand {
        flex: 1;
        margin-right: 1rem;
    }

    .navbar-toggler {
        border: 1px solid rgba(0, 56, 116, 0.2) !important;
        background-color: rgba(0, 56, 116, 0.05) !important;
        padding: 4px 8px !important;
        order: 2;
        /* Ensure toggler is on the right */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 56, 116, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-collapse {
        order: 3;
        width: 100%;
    }

    .navbar-nav {
        padding: 1rem 0;
        align-items: flex-start !important;
    }

    .hero-section {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
        min-height: auto !important;
        display: block !important;
    }

    .hero-container {
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-section .col-lg-7,
    .hero-section .col-lg-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-section img {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }

    .font-manrope.display-4 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-labels {
        gap: 0.75rem !important;
        justify-content: center !important;
    }

    .hero-labels span {
        font-size: 0.75rem !important;
    }

    .hero-labels img {
        height: 18px !important;
        width: auto !important;
    }

    .team-roles-container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .team-role-badge {
        display: flex !important;
        width: 100% !important;
        margin: 0.4rem 0 !important;
        justify-content: flex-start !important;
        padding: 0.6rem 1.2rem !important;
    }

    .team-role-badge img {
        width: 50px !important;
        height: 50px !important;
        margin-right: 1rem;
    }
}
/* ══════════════════════════════
       Variables
    ══════════════════════════════ */
:root {
    --pri: #4A55A2;
    --pri-light: rgba(74,85,162,.08);
    --pri-mid: rgba(74,85,162,.15);
    --radius-md: 8px;
    --radius-lg: 12px;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --green-bg: #dcfce7;
    --green-text: #166534;
    --red-bg: #fee2e2;
    --red-text: #991b1b;
    --amber-bg: #fef9c3;
    --amber-text: #854d0e;
}

/* ══════════════════════════════
       Sticky bar — compact
    ══════════════════════════════ */
.progress-sticky {
    max-width: 1024px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 7px 0;
    border-radius: 99px;
}

.prog-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prog-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.progress {
    flex: 1;
    height: 5px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar {
    height: 5px;
    background: var(--pri);
    border-radius: 99px;
    transition: width .4s ease;
}

/* Biodata recap */
.biodata-recap {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    text-align: left;
    margin-bottom: 6px;
}

.recap-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.biodata-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 0.5px solid var(--border-color);
    font-size: 13px;
}

    .biodata-row:last-child {
        border-bottom: none;
    }

.bd-label {
    width: 90px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.bd-val {
    color: var(--text-main);
    font-weight: 500;
}

/* Section recap list */
.recap-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    margin-bottom: 16px;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-size: 13px;
}

.recap-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recap-label {
    flex: 1;
    color: var(--text-main);
    font-size: 12.5px;
}

.recap-edit {
    font-size: 11.5px;
    color: var(--pri);
    font-weight: 600;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 99px;
    border: 1px solid var(--pri-mid);
    white-space: nowrap;
}

    .recap-edit:hover {
        background: var(--pri-light);
    }

/* ══════════════════════════════
       Wizard shell
    ══════════════════════════════ */
.wizard-outer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px 16px 48px;
}

.wizard-step {
    display: none;
}

    .wizard-step.active {
        display: block;
        animation: fadeIn .2s ease;
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
       Form card
    ══════════════════════════════ */
.form-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.section-header {
    padding: 14px 16px;
    background: var(--pri-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.q-count {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 3px;
}

.part-badge {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--pri-light);
    color: var(--pri);
}

/* ══════════════════════════════
       Part 1 — Instruksi body
    ══════════════════════════════ */
.instr-body {
    padding: 20px 18px;
}

.instr-icon-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.instr-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 18px;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instr-text {
    font-size: 13.5px;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

@@media (max-width: 500px) {
    .scale-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.scale-card {
    border-radius: var(--radius-md);
    padding: 12px 8px;
    text-align: center;
    border: 1px solid;
}

.sc-num {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.sc-lbl {
    display: block;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
}

.sc-1 {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c;
}

.sc-2 {
    background: #ffedd5;
    border-color: #fdba74;
    color: #c2410c;
}

.sc-3 {
    background: #fef9c3;
    border-color: #fde047;
    color: #854d0e;
}

.sc-4 {
    background: #dcfce7;
    border-color: #86efac;
    color: #15803d;
}

.sc-5 {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.instr-note {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 11px 14px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.note-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* ══════════════════════════════
       Matrix navigation (top of each Q step)
    ══════════════════════════════ */
.matrix-nav {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    margin-bottom: 14px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 5px;
    margin-bottom: 8px;
}

.mx-cell {
    aspect-ratio: 1;
    border-radius: 6px;
    border: 1.5px solid var(--border-color);
    background: var(--red-bg);
    color: var(--red-text);
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .1s, box-shadow .1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mx-cell:hover {
        transform: scale(1.08);
        box-shadow: 0 2px 6px rgba(0,0,0,.1);
    }

    .mx-cell.mx-done {
        background: var(--green-bg);
        color: var(--green-text);
        border-color: #86efac;
    }

    .mx-cell.mx-current {
        background: var(--pri);
        color: #fff;
        border-color: var(--pri);
    }

.matrix-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mxl-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
}

.mxl-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.dot-done {
    background: var(--green-bg);
    border: 1px solid #86efac;
}

.dot-cur {
    background: var(--pri);
}

.dot-empty {
    background: var(--red-bg);
    border: 1px solid #fca5a5;
}

/* ══════════════════════════════
       Question card body
    ══════════════════════════════ */
.q-body {
    padding: 20px 18px;
}

.q-statement {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 22px;
    font-weight: 500;
}

/* Likert */
.likert-group {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

@@media (max-width: 480px) {
    .likert-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

.likert-option input[type="radio"] {
    display: none;
}

.likert-lbl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 6px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .15s;
    user-select: none;
    background: #fff;
    width: 100%;
    text-align: center;
}

    .likert-lbl:hover {
        border-color: var(--pri);
        background: var(--pri-light);
    }

.lbl-num {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.lbl-txt {
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-muted);
}

input[type="radio"]:checked + .lbl-1 {
    background: #fee2e2;
    border-color: #dc2626;
    color: #b91c1c;
}

input[type="radio"]:checked + .lbl-2 {
    background: #ffedd5;
    border-color: #ea580c;
    color: #c2410c;
}

input[type="radio"]:checked + .lbl-3 {
    background: #fef9c3;
    border-color: #ca8a04;
    color: #854d0e;
}

input[type="radio"]:checked + .lbl-4 {
    background: #dcfce7;
    border-color: #16a34a;
    color: #15803d;
}

input[type="radio"]:checked + .lbl-5 {
    background: #dbeafe;
    border-color: #2563eb;
    color: #1d4ed8;
}

/* Q status text */
.q-status {
    font-size: 12px;
    text-align: center;
}

.status-ok {
    color: #16a34a;
    font-weight: 600;
}

.status-warn {
    color: #d97706;
    font-weight: 600;
}

/* ══════════════════════════════
       Wizard nav actions
    ══════════════════════════════ */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity .15s, transform .1s;
}

    .btn-nav:active {
        transform: scale(.97);
    }

.btn-prev {
    background: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

    .btn-prev:hover {
        background: #e2e8f0;
    }

.btn-next {
    background: var(--pri);
    color: #fff;
}

    .btn-next:hover {
        opacity: .88;
    }

.nav-icon {
    font-size: 14px;
}

/* ══════════════════════════════
       Summary / Part 3
    ══════════════════════════════ */
.summary-card {
}

.summary-body {
    padding: 18px 16px 20px;
}

/* Group recap */
.group-recap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.grp-recap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #f8fafc;
}

.grp-recap-name {
    font-size: 12.5px;
    color: var(--text-main);
    font-weight: 500;
    min-width: 130px;
    flex-shrink: 0;
}

.grp-recap-nums {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.grp-q-dot {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    background: var(--red-bg);
    color: var(--red-text);
    border: 1px solid #fca5a5;
    transition: background .2s;
}

    .grp-q-dot.dot-answered {
        background: var(--green-bg);
        color: var(--green-text);
        border-color: #86efac;
    }

/* Summary matrix */
.sum-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.summary-matrix {
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.sm-cell {
    border-radius: var(--radius-md);
    border: 1.5px solid #fca5a5;
    background: var(--red-bg);
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .1s;
}

    .sm-cell:hover {
        transform: scale(1.04);
    }

    .sm-cell.sm-done {
        background: var(--green-bg);
        border-color: #86efac;
    }

.sm-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    line-height: 1;
}

.sm-status {
    display: block;
    font-size: 10px;
    margin-top: 3px;
}

.sm-cell.sm-done .sm-num {
    color: var(--green-text);
}

.sm-cell.sm-done .sm-status {
    color: #4ade80;
}

.sm-cell:not(.sm-done) .sm-num {
    color: var(--red-text);
}

.sm-cell:not(.sm-done) .sm-status {
    color: #f87171;
}

.sm-legend {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.sml-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--text-muted);
}

.sml-box {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid;
}

.sml-done {
    background: var(--green-bg);
    border-color: #86efac;
}

.sml-empty {
    background: var(--red-bg);
    border-color: #fca5a5;
}

/* Answered counter */
.answered-counter {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

#sumAnswered {
    font-weight: 700;
    color: var(--pri);
}

/* Alert */
.alert-warn {
    display: none;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: var(--amber-bg);
    color: var(--amber-text);
    border: 1px solid #fde047;
    font-size: 13px;
    margin-top: 4px;
}

    .alert-warn.show {
        display: flex;
    }

.warn-icon {
    flex-shrink: 0;
    font-size: 15px;
}

/* Submit button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    background: var(--pri);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity .15s, transform .1s;
}

    .btn-submit:hover:not(:disabled) {
        opacity: .88;
    }

    .btn-submit:active:not(:disabled) {
        transform: scale(.97);
    }

    .btn-submit:disabled {
        opacity: .4;
        cursor: not-allowed;
    }

.submit-icon {
    font-size: 15px;
}


.card-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef1f7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

    .section-header .icon {
        width: 28px;
        height: 28px;
        background: #2a4a7f;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .section-header .icon svg {
            width: 16px;
            height: 16px;
            fill: #ffffff;
        }

    .section-header span {
        font-size: 13px;
        font-weight: 600;
        color: #2a4a7f;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

.summary-card {
    background: #eef1f7;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

    .summary-card .icon-wrap {
        width: 44px;
        height: 44px;
        background: #c9d5ea;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        font-size: 22px;
    }

    .summary-card .num {
        font-size: 26px;
        font-weight: 700;
        /*color: #1c3461;*/
    }

    .summary-card .label {
        font-size: 11px;
        color: #5a6a85;
        margin-top: 4px;
        line-height: 1.35;
    }

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.error-container {
    max-width: 1024px;
    min-height: 70vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.icon-circle {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border: 1px solid #ffcaca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.1);
}

.floating-icon {
    font-size: 48px;
    animation: float 3s ease-in-out infinite;
}

.ring {
    position: absolute;
    border-radius: 50%;
    background-color: #ffe6e6;
    opacity: 0.5;
    z-index: 1;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0.2s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    opacity: 0.25;
    animation-delay: 0.4s;
}

.error-code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 12px rgba(0, 56, 116, 0.1);
}

.error-title {
    font-weight: 700;
    color: var(--color-on-surface-variant);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.error-desc {
    color: var(--color-secondary);
    max-width: 500px;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.4rem;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .floating-icon {
        font-size: 36px;
    }

    .ring-1 {
        width: 110px;
        height: 110px;
    }

    .ring-2 {
        width: 140px;
        height: 140px;
    }

    .error-container {
        min-height: 60vh;
    }
}

.card-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef1f7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

    .section-header .icon {
        width: 28px;
        height: 28px;
        background: #2a4a7f;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .section-header .icon svg {
            width: 16px;
            height: 16px;
            fill: #ffffff;
        }

    .section-header span {
        font-size: 13px;
        font-weight: 600;
        color: #2a4a7f;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

.summary-card {
    background: #eef1f7;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

    .summary-card .icon-wrap {
        width: 44px;
        height: 44px;
        background: #c9d5ea;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        font-size: 22px;
    }

    .summary-card .num {
        font-size: 26px;
        font-weight: 700;
        /*color: #1c3461;*/
    }

    .summary-card .label {
        font-size: 11px;
        color: #5a6a85;
        margin-top: 4px;
        line-height: 1.35;
    }

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════
       CSS Variables
    ══════════════════════════════ */
:root {
    --pri: #4A55A2;
    --pri-light: rgba(74, 85, 162, .08);
    --pri-mid: rgba(74, 85, 162, .15);
    --radius-md: 8px;
    --radius-lg: 12px;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --green-bg: #dcfce7;
    --green-text: #166534;
    --amber-bg: #fef9c3;
    --amber-text: #854d0e;
}

/* ══════════════════════════════
       Progress Sticky — compact single row
    ══════════════════════════════ */
.progress-sticky {
    max-width: 1024px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 7px 0;
    border-radius: 99px;
}

.prog-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prog-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.progress {
    flex: 1;
    height: 5px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar {
    height: 5px;
    background: var(--pri);
    border-radius: 99px;
    transition: width .4s ease;
}

/* ══════════════════════════════
       Wizard Shell
    ══════════════════════════════ */
.wizard-outer {
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 20px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn .2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
       Step Nav — dots
    ══════════════════════════════ */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.step-badge {
    font-size: 12px;
    font-weight: 600;
    background: var(--pri-light);
    color: var(--pri);
    padding: 4px 12px;
    border-radius: 99px;
}

.step-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.dot:hover {
    transform: scale(1.3);
}

.dot.active {
    background: var(--pri);
}

.dot.done {
    background: #4ade80;
}

/* ══════════════════════════════
       Form Card
    ══════════════════════════════ */
.form-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.section-header {
    padding: 14px 16px;
    background: var(--pri-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.q-count {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 3px;
}

.points-badge {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
    background: #f1f5f9;
    color: var(--text-muted);
}

.points-badge.exact {
    background: var(--green-bg);
    color: var(--green-text);
}

/* ══════════════════════════════
       Instruction box (step 0)
    ══════════════════════════════ */
.instruction-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 16px;
    background: #eff6ff;
    border-bottom: 1px solid #bfdbfe;
    font-size: 13px;
    color: #1e40af;
    line-height: 1.6;
}

.instr-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    font-style: normal;
}

/* ══════════════════════════════
       Rank Hint
    ══════════════════════════════ */
.rank-hint {
    padding: 8px 14px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-hint small {
    font-size: 12px;
    color: var(--text-muted);
}

.drag-icon {
    color: #adb5bd;
    font-size: 15px;
}

/* ══════════════════════════════
       Sort Items
    ══════════════════════════════ */
.sortable-list {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.sort-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: grab;
    user-select: none;
    transition: border-color .15s, box-shadow .15s;
    margin-bottom: 6px;
}

.sort-item:last-child {
    margin-bottom: 0;
}

.sort-item:active {
    cursor: grabbing;
}

.sort-item.sortable-ghost {
    opacity: .25;
    border: 2px dashed var(--pri);
    background: #f1f5ff;
}

.sort-item.sortable-chosen {
    border-color: var(--pri);
    box-shadow: 0 0 0 3px var(--pri-mid);
}

.drag-handle {
    color: #adb5bd;
    font-size: 16px;
    letter-spacing: -2px;
    flex-shrink: 0;
    cursor: grab;
}

.rank-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.item-body {
    flex: 1;
    min-width: 0;
}

.question-text {
    font-size: 13.5px;
    color: var(--text-main);
    line-height: 1.55;
    margin: 0;
}

/* Score chip */
.score-chip {
    min-width: 38px;
    height: 30px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.chip-high {
    background: var(--pri);
    color: #fff;
}

.chip-mid {
    background: #c7d2fe;
    color: #3730a3;
}

.chip-low {
    background: #f1f5f9;
    color: #94a3b8;
}

/* Total bar */
.total-bar {
    padding: 9px 14px;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.total-label {
    font-size: 12.5px;
    color: var(--text-muted);
}

.total-val {
    font-size: 13px;
}

.total-val.exact {
    color: #16a34a;
}

.total-val.over {
    color: #dc2626;
}

/* ══════════════════════════════
       Info Grid (Data Peserta)
    ══════════════════════════════ */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px 16px;
}

@media (max-width: 560px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-field .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.info-field .form-control {
    padding: 9px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-main);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
}

.info-field .form-control:focus {
    outline: none;
    border-color: var(--pri);
    box-shadow: 0 0 0 3px var(--pri-mid);
}

.field-error {
    font-size: 11.5px;
    color: #dc2626;
}

/* ══════════════════════════════
       Wizard Actions
    ══════════════════════════════ */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity .15s, transform .1s;
}

.btn-nav:active {
    transform: scale(.97);
}

.btn-prev {
    background: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-prev:hover {
    background: #e2e8f0;
}

.btn-next {
    background: var(--pri);
    color: #fff;
}

.btn-next:hover {
    opacity: .88;
}

.nav-icon {
    font-size: 14px;
}

.step-status {
    font-size: 12px;
    text-align: center;
}

.status-ok {
    color: #16a34a;
    font-weight: 600;
}

.status-warn {
    color: #d97706;
    font-weight: 600;
}

/* ══════════════════════════════
       Summary card
    ══════════════════════════════ */
.summary-card {
    padding: 28px 24px 20px;
    text-align: center;
}

.summary-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green-text);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.summary-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.summary-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Biodata recap */
.biodata-recap {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    text-align: left;
    margin-bottom: 6px;
}

.recap-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.biodata-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 0.5px solid var(--border-color);
    font-size: 13px;
}

.biodata-row:last-child {
    border-bottom: none;
}

.bd-label {
    width: 90px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.bd-val {
    color: var(--text-main);
    font-weight: 500;
}

/* Section recap list */
.recap-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    margin-bottom: 16px;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-size: 13px;
}

.recap-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recap-label {
    flex: 1;
    color: var(--text-main);
    font-size: 12.5px;
}

.recap-edit {
    font-size: 11.5px;
    color: var(--pri);
    font-weight: 600;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 99px;
    border: 1px solid var(--pri-mid);
    white-space: nowrap;
}

.recap-edit:hover {
    background: var(--pri-light);
}

/* Alert */
.alert-warn {
    display: none;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: var(--amber-bg);
    color: var(--amber-text);
    border: 1px solid #fde047;
    font-size: 13px;
    margin-top: 14px;
    text-align: left;
}

.alert-warn.show {
    display: flex;
}

.warn-icon {
    flex-shrink: 0;
    font-size: 15px;
}

/* Submit button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    background: var(--pri);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity .15s, transform .1s;
}

.btn-submit:hover {
    opacity: .88;
}

.btn-submit:active {
    transform: scale(.97);
}

.submit-icon {
    font-size: 15px;
}
.not-found-container {
    max-width: 1024px;
    min-height: 70vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.icon-circle {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-surface-container-low) 100%);
    border: 1px solid var(--color-outline-variant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.floating-icon {
    font-size: 48px;
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
}

.ring {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-primary-fixed);
    opacity: 0.4;
    z-index: 1;
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0.2s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    opacity: 0.2;
    animation-delay: 0.4s;
}

.error-code {
    font-size: 7rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 12px rgba(0, 56, 116, 0.1);
}

.error-title {
    font-weight: 700;
    color: var(--color-on-surface-variant);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.error-desc {
    color: var(--color-secondary);
    max-width: 480px;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.4rem;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .floating-icon {
        font-size: 36px;
    }

    .ring-1 {
        width: 110px;
        height: 110px;
    }

    .ring-2 {
        width: 140px;
        height: 140px;
    }

    .not-found-container {
        min-height: 60vh;
    }
}

.premium-header {
    background-color: #003874;
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 56px; /* Offset for navbar */
}

.price-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .price-card:hover {
        transform: translateY(-5px);
    }

.bank-card {
    border-radius: 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.wa-btn {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .wa-btn:hover {
        background-color: #128C7E;
        color: white;
        transform: scale(1.05);
    }

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

body {
    margin-bottom: 0 !important;
    display: flex;
    min-height: 100vh;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Active nav item */
#sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #fff !important;
}

    #sidebar .nav-link.active svg {
        fill: #fff;
    }

/* Hover state for non-active items */
#sidebar .nav-link.text-dark:hover {
    background-color: #f0f4ff;
    color: #0d6efd !important;
}

#sidebar .nav-link {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0.6rem 0.85rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

/* Avatar circle */
.avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* User dropdown trigger */
.user-dropdown-btn {
    transition: background 0.15s ease;
    border-radius: 10px;
}

    .user-dropdown-btn:hover {
        background-color: #f0f4ff;
    }

/* Dropdown polish */
.dropdown-menu {
    border-radius: 10px;
    font-size: 0.875rem;
}

.dropdown-item {
    border-radius: 6px;
    margin: 0 4px;
    width: calc(100% - 8px);
    font-size: 0.875rem;
}

    .dropdown-item:hover {
        background-color: #f0f4ff;
    }

    .dropdown-item.text-danger:hover {
        background-color: #fff5f5;
    }


/* Wrapper utama */
.sidebar-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar selalu menempel kiri */
#sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
}

/* Konten utama mengisi sisa ruang */
.main-content {
    flex: 1;
    overflow-y: auto;
}
:root {
    --primary: #003874;
    --primary-dark: #001b3e;
    --primary-container: #1a4f95;
    --on-surface: #191c1e;
    --on-surface-variant: #424751;
    --surface: #f7f9fb;
    --surface-container: #eceef0;
    --outline: #737782;
    --outline-variant: #c3c6d2;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--on-surface);
}

h1, h2, h3, .font-brand {
    font-family: 'Manrope', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
}

.navbar-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--primary) !important;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #475569 !important;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--primary) !important;
    }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-bottom: 2px solid #001b3e;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    transition: transform 0.1s;
}

    .btn-primary-custom:hover {
        background-color: #08458b;
        color: #fff;
    }

    .btn-primary-custom:active {
        transform: scale(0.97);
    }

.btn-outline-custom {
    border: 1px solid var(--outline);
    background: transparent;
    color: #505f76;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s;
}

    .btn-outline-custom:hover {
        background-color: var(--surface-container);
    }

/* Hero 
.hero-section {
    padding: 5rem 0;
}*/

.hero-img-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #e0e3e5;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--outline-variant);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: relative;
}

    .hero-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: #fff;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    max-width: 200px;
}

.progress-bar-custom {
    height: 8px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 80%;
    height: 100%;
    background: var(--primary);
    border-radius: 999px;
}

/* Leadership Section */
.section-leadership {
    background: #fff;
    padding: 5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.badge-pill {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    background: rgba(0, 56, 116, 0.08);
    color: var(--primary-container);
    padding: 0.25rem 1rem;
    border-radius: 999px;
}

.style-card {
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--outline-variant);
    border-radius: 0.375rem;
    transition: border-color 0.2s;
}

    .style-card:hover {
        border-color: var(--primary);
    }

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,56,116,0.05);
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
    transition: background 0.2s;
}

.style-card:hover .icon-box {
    background: rgba(0,56,116,0.1);
}

/* Belbin Section */
.section-belbin {
    padding: 5rem 0;
}

.radar-wrapper {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.radar-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
}

.radar-ring-1 {
    inset: 0;
}

.radar-ring-2 {
    inset: 15%;
}

.radar-ring-3 {
    inset: 30%;
}

.radar-label {
    position: absolute;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #94a3b8;
}

.radar-label-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.radar-label-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.radar-label-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Why Section */
.section-why {
    background: #f8fafc;
    padding: 5rem 0;
    border-top: 1px solid #e2e8f0;
}

.bento-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
}

.bento-card-dark {
    background: var(--primary);
    border: 1px solid #001b3e;
    border-radius: 0.75rem;
    padding: 2rem;
    color: #fff;
}

.avatar-stack img,
.avatar-stack .avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

    .avatar-stack img:first-child {
        margin-left: 0;
    }

.avatar-more {
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

    footer a {
        font-family: 'Manrope', sans-serif;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
        color: #64748b;
        text-decoration: none;
        transition: color 0.2s;
    }

        footer a:hover {
            color: #1e40af;
        }

@media (max-width: 768px) {
    .floating-card {
        display: none;
    }
}

.hero-section {
    padding: 6rem 0 5rem;
    /*background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-primary-fixed) 100%);*/
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.text-brand {
    color: var(--color-primary) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-outline-variant);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 56, 116, 0.08);
    position: relative;
    overflow: hidden;
}

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--color-primary);
    }

.nucleus-card {
    background: #ffffff;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-outline-variant);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: flex-start; /* Align image and text at the top */
    gap: 1rem; /* Space between image and text */
}

    .nucleus-card:hover {
        border-color: var(--color-primary-container);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 56, 116, 0.08);
    }

.role-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    /*background: var(--color-primary-fixed);*/
    border-radius: 12px;
    transition: all 0.3s ease;
    line-height: 0; /* Remove extra spacing around image */
}

.nucleus-card:hover .role-icon {
    /*background: var(--color-primary);*/
    color: #ffffff;
    transform: scale(1.05);
}

.team-role-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: all 0.2s ease;
}

    .team-role-badge:hover {
        background: var(--color-primary-fixed);
        border-color: var(--color-primary-container);
        /*color: var(--color-primary);*/
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 56, 116, 0.08);
    }

.advantage-card {
    background: #ffffff;
    border: 1px solid var(--color-outline-variant);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border-radius: 1rem;
}

    .advantage-card:hover {
        border-color: var(--color-primary-container);
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 56, 116, 0.08);
    }

.advantage-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--color-primary-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

    .advantage-icon-wrapper i {
        color: var(--color-primary);
        font-size: 1.5rem;
    }

.pricing-section {
    background: var(--color-surface);
    border-top: 1px solid var(--color-outline-variant);
    padding: 5rem 0;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--color-outline-variant);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

    .pricing-card.pro {
        border: 2px solid var(--color-primary);
        box-shadow: 0 8px 32px rgba(0, 56, 116, 0.1);
        transform: scale(1.02);
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    }

    .pricing-card.pro:hover {
        transform: scale(1.02) translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 56, 116, 0.15);
    }

.list-check {
    padding-left: 0;
}

    .list-check li {
        list-style: none;
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.8rem;
        color: var(--color-on-surface-variant);
        font-size: 0.95rem;
    }

        .list-check li::before {
            content: "\F26E";
            font-family: "bootstrap-icons";
            color: var(--color-primary-container);
            position: absolute;
            left: 0;
            top: 2px;
        }

.bg-section-light {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-surface-container);
}

.bg-section-surface {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-outline-variant);
}

.badge-subtle {
    background-color: var(--color-primary-fixed);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 576px) {
    .role-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .pricing-card.pro {
        transform: none;
    }
}

.custom-toggler-btn {
    border: 1px solid #0d6efd;
    padding: 4px 8px;
}

.custom-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230d6efd' stroke-width='1.8' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    background-size: 100% 100%;
}
/* ══════════════════════════════
       CSS Variables / Base
    ══════════════════════════════ */
:root {
    --pri: #4A55A2;
    --pri-light: rgba(74,85,162,.08);
    --pri-mid: rgba(74,85,162,.15);
    --radius-md: 8px;
    --radius-lg: 12px;
    --border-color: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --green-bg: #dcfce7;
    --green-text: #166534;
    --amber-bg: #fef9c3;
    --amber-text: #854d0e;
}

/* ══════════════════════════════
       Progress Sticky
    ══════════════════════════════ */
.progress-sticky {
    max-width: 1024px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 7px 0;
    border-radius: 99px;
}

.prog-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prog-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.progress {
    flex: 1;
    height: 5px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar {
    height: 5px;
    background: var(--pri);
    border-radius: 99px;
    transition: width .4s ease;
}

/* ══════════════════════════════
       Wizard Shell
    ══════════════════════════════ */
.wizard-outer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px 16px 48px;
}

.wizard-step {
    display: none;
}

    .wizard-step.active {
        display: block;
        animation: fadeIn .2s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
       Step Nav (dots)
    ══════════════════════════════ */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.step-badge {
    font-size: 12px;
    font-weight: 600;
    background: var(--pri-light);
    color: var(--pri);
    padding: 4px 12px;
    border-radius: 99px;
}

.step-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

    .dot:hover {
        transform: scale(1.3);
    }

    .dot.active {
        background: var(--pri);
    }

    .dot.done {
        background: #4ade80;
    }

/* ══════════════════════════════
Instruction box (step 0)
══════════════════════════════ */
.instruction-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 16px;
    background: #eff6ff;
    border-bottom: 1px solid #bfdbfe;
    font-size: 13px;
    color: #1e40af;
    line-height: 1.6;
}

.instr-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    font-style: normal;
}

/* ══════════════════════════════
       Form Card
    ══════════════════════════════ */
.form-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.section-header {
    padding: 14px 16px;
    background: var(--pri-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.q-count {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 3px;
}

.points-badge {
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
    background: #f1f5f9;
    color: var(--text-muted);
}

    .points-badge.exact {
        background: var(--green-bg);
        color: var(--green-text);
    }

/* ══════════════════════════════
       Rank Hint
    ══════════════════════════════ */
.rank-hint {
    padding: 8px 14px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .rank-hint small {
        font-size: 12px;
        color: var(--text-muted);
    }

.drag-icon {
    color: #adb5bd;
    font-size: 15px;
}

/* ══════════════════════════════
       Sort Items
    ══════════════════════════════ */
.sortable-list {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.sort-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: grab;
    user-select: none;
    transition: border-color .15s, box-shadow .15s;
    margin-bottom: 6px;
}

    .sort-item:last-child {
        margin-bottom: 0;
    }

    .sort-item:active {
        cursor: grabbing;
    }

    .sort-item.sortable-ghost {
        opacity: .25;
        border: 2px dashed var(--pri);
        background: #f1f5ff;
    }

    .sort-item.sortable-chosen {
        border-color: var(--pri);
        box-shadow: 0 0 0 3px var(--pri-mid);
    }

.drag-handle {
    color: #adb5bd;
    font-size: 16px;
    letter-spacing: -2px;
    flex-shrink: 0;
    cursor: grab;
}

.rank-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.item-body {
    flex: 1;
    min-width: 0;
}

.question-code {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--pri);
    background: var(--pri-light);
    border-radius: 4px;
    padding: 1px 6px;
}

.question-text {
    font-size: 13.5px;
    color: var(--text-main);
    line-height: 1.55;
    margin: 4px 0 0;
}

/* Score chip */
.score-chip {
    min-width: 38px;
    height: 30px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.chip-high {
    background: var(--pri);
    color: #fff;
}

.chip-mid {
    background: #c7d2fe;
    color: #3730a3;
}

.chip-low {
    background: #f1f5f9;
    color: #94a3b8;
}

/* Total bar */
.total-bar {
    padding: 9px 14px;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.total-label {
    font-size: 12.5px;
    color: var(--text-muted);
}

.total-val {
    font-size: 13px;
}

    .total-val.exact {
        color: #16a34a;
    }

    .total-val.over {
        color: #dc2626;
    }

/* ══════════════════════════════
       Info Grid (Data Peserta)
    ══════════════════════════════ */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px 16px;
}

@media (max-width: 560px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .info-field .form-label {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text-muted);
    }

    .info-field .form-control {
        padding: 9px 12px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        font-size: 14px;
        color: var(--text-main);
        background: #fff;
        transition: border-color .15s, box-shadow .15s;
        width: 100%;
    }

        .info-field .form-control:focus {
            outline: none;
            border-color: var(--pri);
            box-shadow: 0 0 0 3px var(--pri-mid);
        }

.field-error {
    font-size: 11.5px;
    color: #dc2626;
}

/* ══════════════════════════════
       Wizard Actions
    ══════════════════════════════ */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity .15s, transform .1s;
}

    .btn-nav:active {
        transform: scale(.97);
    }

.btn-prev {
    background: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

    .btn-prev:hover {
        background: #e2e8f0;
    }

.btn-next {
    background: var(--pri);
    color: #fff;
}

    .btn-next:hover {
        opacity: .88;
    }

.nav-icon {
    font-size: 14px;
}

.step-status {
    font-size: 12px;
    text-align: center;
}

.status-ok {
    color: #16a34a;
    font-weight: 600;
}

.status-warn {
    color: #d97706;
    font-weight: 600;
}

/* ══════════════════════════════
       Summary / Done Step
    ══════════════════════════════ */
.summary-card {
    text-align: center;
    padding: 32px 24px 24px;
}

.summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green-text);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.summary-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.summary-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.recap-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    margin-bottom: 16px;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-size: 13px;
}

.recap-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--pri);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recap-label {
    flex: 1;
    color: var(--text-main);
    font-size: 12.5px;
}

.recap-edit {
    font-size: 11.5px;
    color: var(--pri);
    font-weight: 600;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 99px;
    border: 1px solid var(--pri-mid);
    white-space: nowrap;
}

    .recap-edit:hover {
        background: var(--pri-light);
    }

/* Alert */
.alert-warn {
    display: none;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: var(--amber-bg);
    color: var(--amber-text);
    border: 1px solid #fde047;
    font-size: 13px;
    margin-top: 14px;
    text-align: left;
}

    .alert-warn.show {
        display: flex;
    }

.warn-icon {
    flex-shrink: 0;
    font-size: 15px;
}

/* Submit button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    background: var(--pri);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity .15s, transform .1s;
}

    .btn-submit:hover {
        opacity: .88;
    }

    .btn-submit:active {
        transform: scale(.97);
    }

.submit-icon {
    font-size: 15px;
}

/* Biodata recap */
.biodata-recap {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    text-align: left;
    margin-bottom: 6px;
}

.recap-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.biodata-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 0.5px solid var(--border-color);
    font-size: 13px;
}

    .biodata-row:last-child {
        border-bottom: none;
    }

.bd-label {
    width: 90px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.bd-val {
    color: var(--text-main);
    font-weight: 500;
}


/* /Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/*a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
  color: #0077cc;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}*/
/* /Views/Shared/_LayoutAdmin.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-4zd1m1w8f6] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-4zd1m1w8f6] {
  color: #0077cc;
}

.btn-primary[b-4zd1m1w8f6] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-4zd1m1w8f6], .nav-pills .show > .nav-link[b-4zd1m1w8f6] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-4zd1m1w8f6] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-4zd1m1w8f6] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-4zd1m1w8f6] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-4zd1m1w8f6] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-4zd1m1w8f6] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

