
.onboarding-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 41, 59, 0.55); /* softer slate overlay */
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* When visible */
.onboarding-overlay.visible {
    display: flex !important;   /* FIX */
    opacity: 1;
    pointer-events: auto;
}


/* ========================================================= */
/* CARD / MODAL */
/* ========================================================= */
.onboarding-card {
    background: #ffffff;
    border-radius: 20px;
    width: 92%;
    max-width: 440px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0px 12px 40px rgba(0,0,0,0.12);
    animation: slideUp 0.35s ease;
    transform: translateY(0);
}

/* Smooth slide animation */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ========================================================= */
/* ICON / TEXT */
/* ========================================================= */
.onboarding-icon {
    font-size: 52px;        /* larger and friendlier */
    margin-bottom: 18px;
}

.onboarding-title {
    font-size: 22px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 10px;
}

.onboarding-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 28px;
    padding: 0 10px;
}

/* ========================================================= */
/* STEP DOTS */
/* ========================================================= */
.onboarding-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 26px;
}

.onboarding-steps div {
    width: 9px;
    height: 9px;
    background: #CBD5E1; /* slate-300 */
    border-radius: 50%;
    transition: all 0.2s ease;
}

.onboarding-steps .active {
    background: #93B47E;   /* your brand color */
    transform: scale(1.25);
}

/* ========================================================= */
/* FOOTER + BUTTONS */
/* ========================================================= */
.onboarding-footer {
    margin-top: 32px;
}

.onboarding-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

/* Match your existing button styling */
.onboarding-buttons .btn-primary {
    padding: 10px 18px;
    font-size: 15px;
}

.onboarding-buttons .btn-secondary {
    padding: 10px 18px;
    font-size: 15px;
    background: #E2E8F0;
    color: #1E293B;
}

/* ========================================================= */
/* "Don’t show again" Checkbox */
/* ========================================================= */
.onboarding-checkbox,
.hide-forever {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 6px;
}

.onboarding-checkbox input,
.hide-forever input {
    width: 16px;
    height: 16px;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Button Row */
.onboarding-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

/* Row for buttons */
.onboarding-actions .buttons {
    display: flex;
    gap: 12px;
}

/* Primary (Next) */
.onboarding-actions .btn-primary {
    background: #14B8A6; /* Teal brand gradient base */
    color: white;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.onboarding-actions .btn-primary:hover {
    opacity: 0.9;
}

/* Secondary (Skip) */
.onboarding-actions .btn-secondary {
    background: #E2E8F0; /* Slate-200 */
    color: #1E293B;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.onboarding-actions .btn-secondary:hover {
    background: #CBD5E1; /* Slightly darker slate */
}