/* ── FOUC prevention ── */
[v-cloak] {
    display: none !important;
}

/* ── HEADER height constant ── */
:root {
    --hdr: 56px;
    --hdr-wfh: 66px;
    --padding-x: 14px;
    --padding-y: 14px;
}

/* ════════════════════════════════════════
           FLOATING USER BAR
        ════════════════════════════════════════ */
.wfh-user-bar {
    position: fixed;
    top: var(--hdr-wfh);
    /* top: var(--hdr); */
    left: 16px;
    right: 16px;
    z-index: 90;
    display: flex;
    align-items: center;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 1);
    /* background: rgba(255, 255, 255, 0.82); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    gap: 10px;
}

.theme-dark .wfh-user-bar {
    background: rgba(30, 30, 30, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.wfh-user-bar .ub-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(204, 0, 0, 0.25);
}

.wfh-user-bar .ub-info {
    flex: 1;
    overflow: hidden;
}

.wfh-user-bar .ub-name {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wfh-user-bar .ub-sub {
    font-size: 10px;
    opacity: .55;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wfh-user-bar .ub-badge {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    letter-spacing: .5px;
}

/* User bar height = 52px so offset = hdr + 52px */
:root {
    --hdr: 56px;
    --ub: 52px;
    --offset: calc(var(--hdr) + var(--ub));
}

/* ════════════════════════════════════════
           PAGE WRAPPERS
        ════════════════════════════════════════ */
/* Generic content pages (below floating bars) */
.wfh-page-content {
    padding-top: var(--offset);
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 20px;
    min-height: 100vh;
}

/* ════════════════════════════════════════
           PAGE 1 — FULLSCREEN SLIDER
        ════════════════════════════════════════ */
.wfh-intro-wrap {
    /* Full viewport, starts from very top */
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

/* Each slide fills the wrap */
.wfh-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    transition: opacity .35s ease, transform .35s ease;
    height: 100%;
}

.wfh-slide.slide-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    display: none;
}

.wfh-slide.slide-active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Slide layout: spacer → image area → bottom text */
.wfh-slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wfh-slide-spacer {
    height: var(--offset);
    flex-shrink: 0;
}

/* Image container — centered, takes remaining space */
.wfh-slide-img-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px 8px;
    overflow: hidden;
}

.wfh-slide-img-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

/* Bottom text panel */
.wfh-slide-bottom {
    padding: 16px 22px calc(30px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.18);
}

.wfh-slide-bottom h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.25;
}

.wfh-slide-bottom p {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    margin: 0 0 14px;
    line-height: 1.5;
}

/* Progress dots */
.slide-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.slide-dot {
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .3);
    transition: width .35s ease, background .35s ease;
    width: 16px;
}

.slide-dot.active {
    width: 32px;
    background: #fff;
}

/* Nav row */
.slide-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.slide-btn-prev {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 9px 18px;
    text-decoration: none;
    cursor: pointer;
}

.slide-btn-next {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: rgba(255, 255, 255, .22);
    border-radius: 20px;
    padding: 10px 22px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .35);
    flex: 1;
    text-align: center;
}

.slide-btn-start {
    color: #cc0000;
    font-size: 14px;
    font-weight: 900;
    background: #fff;
    border-radius: 20px;
    padding: 11px 28px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    flex: 1;
    text-align: center;
}

/* ════════════════════════════════════════
            display: flex; align-items: center; justify-content: center;
           PAGE 2 — ELIGIBILITY
        ════════════════════════════════════════ */
/* Full-height wrapper */
.elig-wrap {
    min-height: 100svh;
    padding-top: var(--hdr);
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    padding-right: var(--padding-x);
    padding-left: var(--padding-y);
}

/* ── Horizontal Stepper ── */
.h-stepper {
    display: flex;
    align-items: flex-start;
    padding: 16px 0 4px;
    position: relative;
}

.h-stepper-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* connector line between steps */
.h-stepper-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 55%;
    right: -45%;
    height: 2px;
    background: rgba(0, 0, 0, .1);
    z-index: 0;
}

.h-stepper-item.done:not(:last-child)::after,
.h-stepper-item.active:not(:last-child)::after {
    background: linear-gradient(90deg, #1e4db7, rgba(30, 77, 183, .2));
}

.h-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    transition: all .35s ease;
}

.h-step-circle.done {
    background: #e8f5e9;
    color: #2e7d32;
}

.h-step-circle.active {
    background: linear-gradient(135deg, #3b6fd4, #1e4db7);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 77, 183, .35);
}

.h-step-circle.active.spinning {
    background: linear-gradient(135deg, #3b6fd4, #1e4db7);
}

.h-step-circle.wait {
    background: rgba(0, 0, 0, .06);
    color: rgba(0, 0, 0, .3);
}

.h-step-circle.fail {
    background: rgba(183, 28, 28, .1);
    color: #c62828;
}

.h-step-label {
    font-size: 10px;
    font-weight: 700;
    margin-top: 6px;
    text-align: center;
    opacity: .5;
    letter-spacing: .2px;
}

.h-step-label.active,
.h-step-label.done {
    opacity: .85;
}

/* ── Status Card ── */
.elig-status-card {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.elig-status-header {
    padding: 20px 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.elig-status-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.elig-status-body {
    flex: 1;
}

.elig-status-body h5 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 2px;
}

.elig-status-body p {
    font-size: 12px;
    margin: 0;
    opacity: .65;
}

/* progress strip at bottom of status card */
.elig-progress-strip {
    height: 4px;
    background: rgba(0, 0, 0, .06);
    overflow: hidden;
}

.elig-progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width .6s ease;
}

/* ── Schedule Card ── */
.sched-card {
    background: var(--card-color, #fff);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.sched-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b6fd4, #1e4db7);
    color: #fff;
}

/* ── Bottom Action ── */
.elig-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    transition: transform .15s, box-shadow .15s;
}

.elig-action-btn:active {
    transform: scale(.97);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}

/* pulse ring for loading icon */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: .5;
    }

    80% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.elig-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(30, 77, 183, .25);
    animation: pulse-ring 1.6s ease-out infinite;
}

/* result icon pop */
@keyframes icon-pop {
    0% {
        transform: scale(.4);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.anim-pop {
    animation: icon-pop .45s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* ════════════════════════════════════════
           PAGE 3 — REGISTER LOCATION
        ════════════════════════════════════════ */
.loc-section-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    opacity: .45;
    margin: 14px 0 6px;
}

.loc-coord-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-color, #fff);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
}

.loc-coord-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.loc-coord-text {
    flex: 1;
    overflow: hidden;
}

.loc-coord-text strong {
    font-size: 13px;
    display: block;
}

.loc-coord-text span {
    font-size: 11px;
    opacity: .5;
}

/* ════════════════════════════════════════
           LOADING / ANIMATED BAR
        ════════════════════════════════════════ */
@keyframes indeterminate {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }
}

.anim-bar-wrap {
    overflow: hidden;
    height: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, .08);
}

.anim-bar {
    height: 4px;
    width: 40%;
    border-radius: 4px;
    animation: indeterminate 1.2s infinite ease-in-out;
}

/* step badge */
.wfh-step-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(204, 0, 0, .08);
    color: #cc0000;
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

/* selfie placeholder */
.selfie-placeholder {
    border: 2px dashed rgba(0, 0, 0, .15);
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
}

/* ── Map pin pulse animation ── */
@keyframes wfh-pin-pulse {
    0% {
        box-shadow: 0 3px 12px rgba(21, 101, 192, .5), 0 0 0 0 rgba(21, 101, 192, .4);
    }

    60% {
        box-shadow: 0 3px 12px rgba(21, 101, 192, .5), 0 0 0 14px rgba(21, 101, 192, 0);
    }

    100% {
        box-shadow: 0 3px 12px rgba(21, 101, 192, .5), 0 0 0 0 rgba(21, 101, 192, 0);
    }
}

.wfh-map-pin {
    animation: wfh-pin-pulse 2.2s ease-out infinite;
}

/* Leaflet tooltip override for WFH label */
.wfh-tooltip-label {
    background: rgba(255, 255, 255, .92);
    border: none;
    border-radius: 8px;
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    font-size: 11px;
    white-space: nowrap;
}

.wfh-tooltip-label::before {
    display: none;
}

/* Formatted Inline Styles */
.wfh-custom-1 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
    border-radius: 14px;
    padding: 13px 12px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(198, 40, 40, .35);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #43a047, #2e7d32);
    color: #fff;
    border-radius: 14px;
    padding: 13px 12px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(46, 125, 50, .35);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-3 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(46, 125, 50, .4);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-4 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: #fff;
    border-radius: 14px;
    padding: 13px 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(21, 101, 192, .35);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-5 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 14px;
    padding: 13px 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .2);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-6 {
    width: 32px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1565c0;
}

.wfh-custom-7 {
    width: 32px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1565c0;
}

.wfh-custom-8 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-9 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, .07);
    color: #333;
    border-radius: 14px;
    padding: 13px 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wfh-custom-10 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, .95);
    color: #1565c0;
    border-radius: 14px;
    padding: 14px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.wfh-custom-11 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(76, 175, 80, .9);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(76, 175, 80, .4);
    margin-bottom: 12px;
    animation: icon-pop .5s both;
}

.wfh-custom-12 {
    position: relative;
    z-index: 1000;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .15);
    flex-shrink: 0;
}

.wfh-custom-13 {
    position: relative;
    z-index: 1000;
    flex-shrink: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .15);
}

.wfh-custom-14 {
    background: rgba(46, 125, 50, .85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-pop .45s cubic-bezier(.34, 1.56, .64, 1) both;
}

.wfh-custom-15 {
    pointer-events: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
    border-left: 4px solid #4caf50;
}

.wfh-custom-16 {
    pointer-events: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
    border-left: 4px solid #ef5350;
}

.wfh-custom-17 {
    position: relative;
    z-index: 1000;
    flex-shrink: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.wfh-custom-18 {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e3f0ff, #bbdefb);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wfh-custom-19 {
    pointer-events: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 10px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
}

.wfh-custom-20 {
    pointer-events: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
}

.wfh-custom-21 {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 6px 14px;
}

.wfh-custom-22 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 25%, transparent 60%, rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
}

.wfh-custom-23 {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(198, 40, 40, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-24 {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(46, 125, 50, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-25 {
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 5px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.wfh-custom-26 {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(21, 101, 192, .15);
    animation: pulse-ring 1.6s ease-out infinite;
}

.wfh-custom-27 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #1565c0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-28 {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wfh-custom-29 {
    width: 200px;
    height: 240px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, .5);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .35);
}

.wfh-custom-30 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 70px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.wfh-custom-31 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e8f5e9;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-32 {
    background: rgba(20, 20, 20, .65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 16px;
}

.wfh-custom-33 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.wfh-custom-34 {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 4px 10px;
}

.wfh-custom-35 {
    background: #e8f5e9;
    color: #1b5e20;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 800;
}

.wfh-custom-36 {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 800;
}

.wfh-custom-37 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(183, 28, 28, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-38 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 12px;
}

.wfh-custom-39 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-40 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.wfh-custom-41 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #1565c0;
    text-transform: uppercase;
}

.wfh-custom-42 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #c62828;
    text-transform: uppercase;
}

.wfh-custom-43 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #2e7d32;
    text-transform: uppercase;
}

.wfh-custom-44 {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #fff;
    text-transform: uppercase;
}

.wfh-custom-45 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-46 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfh-custom-47 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 56px 12px 0;
    pointer-events: none;
    z-index: 100;
}

.wfh-custom-48 {
    background: rgba(27, 94, 32, .12);
    color: #1b5e20;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 900;
}

.wfh-custom-49 {
    background: rgba(30, 77, 183, .1);
    color: #1e4db7;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 900;
}

.wfh-custom-50 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    opacity: .6;
}

.wfh-custom-51 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wfh-custom-52 {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wfh-custom-53 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 56px 12px 0;
    pointer-events: none;
    z-index: 1000;
}

.wfh-custom-54 {
    background: rgba(0, 0, 0, .07);
    color: #999;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 900;
}

.wfh-custom-55 {
    background: rgba(76, 175, 80, .2);
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wfh-custom-56 {
    background: rgba(0, 0, 0, .4);
    border-radius: 12px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wfh-custom-57 {
    background: var(--card-color, #fff);
    border-radius: 16px;
    padding: 14px 16px;
    border-left: 4px solid #81c784;
}

.wfh-custom-58 {
    background: var(--card-color, #fff);
    border-radius: 16px;
    padding: 14px 16px;
    border-left: 4px solid #ef9a9a;
}

.wfh-custom-59 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.wfh-custom-60 {
    width: 14px;
    height: 14px;
    border-width: 2px;
    color: #1565c0;
    margin-right: 8px;
}

.wfh-custom-61 {
    margin: 0;
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wfh-custom-62 {
    color: #fff;
    font-weight: 900;
    margin: 0 0 6px;
    font-size: 22px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.wfh-custom-63 {
    flex-shrink: 0;
    padding: 12px 20px calc(24px + env(safe-area-inset-bottom));
    background: #000;
}

.wfh-custom-64 {
    margin-top: 10px;
    background: rgba(0, 0, 0, .05);
    border-radius: 6px;
    overflow: hidden;
    height: 4px;
}

.wfh-custom-65 {
    display: flex;
    background: linear-gradient(160deg, #1565c0 0%, #1976d2 60%, #0d47a1 100%);
}

.wfh-custom-66 {
    display: none;
    background: linear-gradient(160deg, #1b5e20 0%, #2e7d32 60%, #1a4a1e 100%);
}

.wfh-custom-67 {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    background: #000;
}

.wfh-custom-68 {
    display: none;
    background: linear-gradient(160deg, #b71c1c 0%, #c62828 60%, #8b0000 100%);
}

.wfh-custom-69 {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 800;
    opacity: .4;
    text-transform: uppercase;
}

.wfh-custom-70 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1b5e20, #43a047);
}

.wfh-custom-71 {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    opacity: .45;
    text-transform: uppercase;
}

.wfh-custom-72 {
    margin: 0;
    font-size: 9px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
}

.wfh-custom-73 {
    width: 16px;
    height: 16px;
    border-width: 2px;
    color: #1565c0;
    position: relative;
}

.wfh-custom-74 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    opacity: .3;
}

.wfh-custom-75 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
}

.wfh-custom-76 {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.wfh-custom-77 {
    background: var(--card-color, #fff);
    border-radius: 16px;
    overflow: hidden;
}

.wfh-custom-78 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.wfh-custom-79 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 10;
}

.wfh-custom-80 {
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.wfh-custom-81 {
    display: flex;
    justify-content: flex-end;
    gap: 3px;
    margin-bottom: 8px;
}

.wfh-custom-82 {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #fff;
}

.wfh-custom-83 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.wfh-custom-84 {
    width: 100%;
    background: linear-gradient(90deg, #81c784, #2e7d32);
}

.wfh-custom-85 {
    width: 40%;
    background: linear-gradient(90deg, #ef9a9a, #c62828);
}

.wfh-custom-86 {
    background: linear-gradient(90deg, #3b6fd4, #1e4db7);
    width: 40%;
}

.wfh-custom-87 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}

.wfh-custom-88 {
    margin: 8px 0 0;
    font-size: 10px;
    opacity: .4;
    text-align: center;
}

.wfh-custom-89 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.wfh-custom-90 {
    color: #1976d2;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

.wfh-custom-91 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.wfh-custom-92 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.wfh-custom-93 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.wfh-custom-94 {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.wfh-custom-95 {
    width: 12px;
    height: 12px;
    border-width: 2px;
    color: #1e4db7;
}

.wfh-custom-96 {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.wfh-custom-97 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: #1565c0;
}

.wfh-custom-98 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: #1b5e20;
}

.wfh-custom-99 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: #8b1a1a;
}

.wfh-custom-100 {
    margin: 0;
    font-size: 10px;
    line-height: 1.45;
    opacity: .5;
}

.wfh-custom-101 {
    background: linear-gradient(135deg, #9e9e9e, #616161);
}

.wfh-custom-102 {
    font-size: 11px;
    opacity: .4;
    margin: 0;
    font-weight: 700;
}

.wfh-custom-103 {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.wfh-custom-104 {
    background: linear-gradient(135deg, #e8f0fb, #dde8fa);
}

.wfh-custom-105 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.wfh-custom-106 {
    font-size: 11px;
    opacity: .5;
    margin: 0;
    font-weight: 700;
}

.wfh-custom-107 {
    background: linear-gradient(135deg, #e6f4ea, #c8e6c9);
}

.wfh-custom-108 {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.wfh-custom-109 {
    background: linear-gradient(135deg, #fce4e4, #ffd0d0);
}

.wfh-custom-110 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.wfh-custom-111 {
    background: linear-gradient(90deg, #1976d2, #1565c0);
}

.wfh-custom-112 {
    background: rgba(30, 77, 183, .12);
    position: relative;
}

.wfh-custom-113 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    flex: 1;
}

.wfh-custom-114 {
    color: #2e7d32;
    font-size: 10px;
    font-weight: 800;
}

.wfh-custom-115 {
    color: #c62828;
    font-size: 10px;
    font-weight: 800;
}

.wfh-custom-116 {
    color: #81c784;
    font-size: 10px;
    font-weight: 800;
}

.wfh-custom-117 {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.wfh-custom-118 {
    color: #1e4db7;
    position: relative;
    z-index: 1;
}

.wfh-custom-119 {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.wfh-custom-120 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wfh-custom-121 {
    width: 14px;
    height: 14px;
    border-width: 2px;
}

.wfh-custom-122 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wfh-custom-123 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wfh-custom-124 {
    font-size: 15px;
    font-weight: 900;
    margin: 0;
}

.wfh-custom-125 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.wfh-custom-126 {
    margin: 0;
    font-size: 11px;
    color: #2e7d32;
}

.wfh-custom-127 {
    background: rgba(0, 0, 0, .07);
    color: #333;
}

.wfh-custom-128 {
    margin: 0;
    font-size: 11px;
    color: #c62828;
}

.wfh-custom-129 {
    font-size: 10px;
    color: #fff;
    opacity: .8;
}

.wfh-custom-130 {
    margin: 0;
    font-size: 11px;
    opacity: .45;
}

.wfh-custom-131 {
    margin: 0;
    font-size: 11px;
    opacity: .5;
}

.wfh-custom-132 {
    margin: 0;
    font-size: 11px;
    opacity: .6;
}

.wfh-custom-133 {
    margin: 0;
    font-size: 11px;
    opacity: .4;
}

.wfh-custom-134 {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.wfh-custom-135 {
    margin: 0;
    font-size: 12px;
    opacity: .5;
}

.wfh-custom-136 {
    flex: 1;
    width: 100%;
    min-height: 0;
}

.wfh-custom-137 {
    background: rgba(183, 28, 28, .12);
}

.wfh-custom-138 {
    background: rgba(27, 94, 32, .15);
}

.wfh-custom-139 {
    color: #c62828;
    font-size: 16px;
}

.wfh-custom-140 {
    color: #2e7d32;
    font-size: 12px;
}

.wfh-custom-141 {
    color: #c62828;
    font-size: 12px;
}

.wfh-custom-142 {
    color: #2e7d32;
    font-size: 16px;
}

.wfh-custom-143 {
    color: #81c784;
    font-size: 10px;
}

.wfh-custom-144 {
    color: #81c784;
    font-size: 14px;
}

.wfh-custom-145 {
    color: #ffd54f;
    font-size: 14px;
}

.wfh-custom-146 {
    color: #90caf9;
    font-size: 10px;
}

.wfh-custom-147 {
    color: #c62828;
    font-size: 10px;
}

.wfh-custom-148 {
    color: #1976d2;
    font-size: 12px;
}

.wfh-custom-149 {
    color: #81c784;
    font-size: 12px;
}

.wfh-custom-150 {
    color: #ffb74d;
    font-size: 10px;
}

.wfh-custom-151 {
    color: #2e7d32;
    font-size: 10px;
}

.wfh-custom-152 {
    opacity: .25;
    font-size: 10px;
}

.wfh-custom-153 {
    color: #fff;
    font-size: 12px;
}

.wfh-custom-154 {
    font-size: 32px;
    color: #fff;
}

.wfh-custom-155 {
    color: #fff;
    font-size: 16px;
}

.wfh-custom-156 {
    font-size: 12px;
    opacity: .5;
}

.wfh-custom-157 {
    color: #fff;
    font-size: 28px;
}

.wfh-custom-158 {
    color: #999;
    font-size: 14px;
}

.wfh-custom-159 {
    margin: 0;
    border-radius: 0;
}

.wfh-custom-160 {
    margin: 0;
    font-size: 13px;
}

.wfh-custom-161 {
    display: flex;
    gap: 12px;
}

.wfh-custom-162 {
    display: flex;
    gap: 10px;
}

.wfh-custom-163 {
    flex: 1;
    min-width: 0;
}

.wfh-custom-164 {
    font-size: 14px;
}

.wfh-custom-165 {
    font-size: 10px;
}

.wfh-custom-166 {
    color: #8b1a1a;
}

.wfh-custom-167 {
    color: #1b5e20;
}

.wfh-custom-168 {
    color: #2e7d32;
}

.wfh-custom-169 {
    color: #3b5cb8;
}

.wfh-custom-170 {
    color: #81c784;
}

.wfh-custom-171 {
    color: #c62828;
}

.wfh-custom-172 {
    color: #1a3a8f;
}

.wfh-custom-173 {
    color: #e65100;
}

.wfh-custom-174 {
    display: none;
}

.wfh-custom-175 {
    min-width: 0;
}

.wfh-custom-176 {
    color: #fff;
}

.wfh-custom-177 {
    flex: 1;
}

/* ── Modern Dynamic Buttons ── */
.wfh-btn-primary-dynamic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 13px 12px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: all 0.25s ease;
}

/* Save Button States */
.wfh-btn-save {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27, 94, 32, .35);
    pointer-events: auto;
}

.wfh-btn-save.btn-disabled {
    background: rgba(0, 0, 0, .12) !important;
    color: rgba(0, 0, 0, .3) !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* Submit Button States */
.wfh-btn-submit {
    background: linear-gradient(135deg, #cc0000, #8b0000);
    color: #fff;
    box-shadow: 0 4px 14px rgba(139, 0, 0, .4);
    pointer-events: auto;
}

.wfh-btn-submit.btn-loading {
    background: rgba(0, 0, 0, .15) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: none !important;
    pointer-events: none !important;
}