/* =========================================================
   TUJUANE PRO: SYSTEM CALIBRATION (ONBOARDING)
   Version: 2.1 (Neural / High-Fidelity / Master)
   ========================================================= */

/* 1. CORE WRAPPER & VISIBILITY */
#tujuane-onboarding-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: #050505;
    /* Void Black */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    color: #fff;
    /* Safe Scrolling */
    padding: 20px 0;
}

/* 1.1 SAFE CENTERING (Margin Auto handles overflow gracefully) */
.onboarding-stage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0;
    /* Centers vertically if space allows */
    flex-shrink: 0;
}

:root {
    --theme-color: #00f3ff;
    /* Default Neon Cyan */
    --theme-glow: 0 0 15px rgba(0, 243, 255, 0.4);

    /* SAFETY FALLBACKS FOR COMMON.CSS COMPATIBILITY */
    --bg-dark: #050505;
    --bg-glass-heavy: rgba(10, 10, 10, 0.95);
    --text-white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

.tujuane-dark-mode.theme-neon {
    --theme-color: #00f3ff;
    --theme-glow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.tujuane-dark-mode.theme-gold {
    --theme-color: #d4af37;
    --theme-glow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hidden {
    display: none !important;
}

.input-section {
    animation: fadeIn 0.4s ease-out;
    width: 100%;
}

/* =========================================================
   2. FIXED HEADER & PROGRESS TRACKER
   ========================================================= */
.tujuane-header {
    width: 100%;
    max-width: 480px;
    margin: 10px auto 10px auto;
    /* Reduced from 30px */
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5px;
}

.brand-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #333;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
}

.brand-badge strong {
    color: var(--theme-color);
    text-shadow: 0 0 10px var(--theme-color);
}

.session-id {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
}

.calibration-title {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;
    margin: 10px 0 10px 0;
    /* Tightened Gap */
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--theme-glow);
    opacity: 0.9;
    border: none !important;
    text-decoration: none !important;
    outline: none !important;
}

.tujuane-header {
    border: none !important;
}

.progress-steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 0 5px;
    /* Reduced to 5px to stretch WIDE */
}

.step-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #0a0a0a;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: #444;
    border: none;
    margin: 0 -2px;
    z-index: 1;
}

.step-indicator.active {
    border-color: var(--theme-color);
    color: #000;
    background: var(--theme-color);
    box-shadow: 0 0 15px var(--theme-glow);
    transform: scale(1.1);
}

.step-indicator.completed {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background: rgba(0, 243, 255, 0.1);
}

/* =========================================================
   3. THE GLASS PANEL & FORMS
   ========================================================= */
.glass-panel,
#dynamic-question-container {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    /* Reduced from 30px */
    width: 100%;
    max-width: 480px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 10;
}

.sub-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    /* Reduced from 45px */
    border-bottom: none;
    padding-bottom: 10px;
    /* Reduced from 15px */
    text-align: center;
    /* Center align specifically */
}

.tj-input {
    width: 100%;
    background: #000 !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    margin-bottom: 10px;
    outline: none;
}

.tj-input:focus {
    border-color: var(--theme-color) !important;
}

/* AUTOFILL FIX: Forces dark background for Chrome/Safari */
.tj-input:-webkit-autofill,
.tj-input:-webkit-autofill:hover,
.tj-input:-webkit-autofill:focus,
.tj-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #000 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* =========================================================
   4. INTERACTIVE BUTTONS (HAPTIC UPDATE)
   ========================================================= */
.tj-btn-select,
.tj-option-btn,
.tj-btn-intent {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    padding: 20px;
    /* Larger click area */
    background: #111;
    border: 1px solid #333;
    /* Visible quiet border */
    color: #fff;
    border-radius: 12px;
    /* Smoother corners */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* Spacing between buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tj-btn-select:hover,
.tj-option-btn:hover {
    letter-spacing: 2px;
    background: rgba(0, 243, 255, 0.05);
    /* Subtle Cyan Tint */
    transform: translateY(-3px) scale(1.02);
    border-color: var(--theme-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    /* Soft Glow */
}

.tj-btn-action {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
}

.tj-btn-back {
    background: transparent;
    border: none;
    color: #666;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    width: 100%;
}

.tj-btn-back:hover {
    color: #fff;
}

.action-row {
    display: flex;
    gap: 15px;
}

.action-row .tj-btn-action {
    flex-grow: 1;
    margin-top: 0;
}

.action-row .tj-btn-back {
    width: auto;
}

.intent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.tj-btn-intent {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
}

.tj-btn-intent.selected {
    border-color: var(--theme-color) !important;
    background: rgba(0, 243, 255, 0.1) !important;
    box-shadow: 0 0 15px var(--theme-glow) !important;
    transform: translateY(-3px);
}

.tj-btn-intent:hover {
    border-color: var(--theme-color);
    transform: translateY(-3px);
    background: rgba(0, 243, 255, 0.05);
    /* Lighter hover */
}

.intent-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 5px;
}

.intent-title {
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    display: block;
}

.intent-desc {
    color: #888;
    font-size: 9px;
    display: block;
}

/* =========================================================
   5. PHOTO SCANNER (BIOMETRIC UPDATE)
   ========================================================= */
.photo-scan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scan-frame,
.photo-container {
    width: 120px;
    height: 120px;
    border: 2px dashed #555;
    border-radius: 10px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
    position: relative;
}

/* THE LASER SCAN LINE */
.scan-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--theme-color);
    box-shadow: 0 0 15px var(--theme-color);
    animation: scanningLine 2.5s infinite ease-in-out;
    z-index: 10;
}

@keyframes scanningLine {
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.tj-btn-upload {
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.tj-btn-upload:hover {
    background: var(--theme-color);
    color: #000;
}

/* =========================================================
   6. QUIZ ENGINE
   ========================================================= */
#tujuane-question-screen {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logic-header {
    width: 100%;
    max-width: 480px;
    margin-bottom: 15px;
    text-align: center;
}

.logic-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.logic-progress-track {
    background: #222;
    height: 4px;
    width: 100%;
    margin: 5px 0;
    border-radius: 2px;
}

.logic-progress-fill {
    background: var(--theme-color);
    height: 100%;
    width: 0%;
    box-shadow: 0 0 10px var(--theme-color);
    transition: width 0.3s ease;
}

.logic-percentage {
    text-align: right;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--theme-color);
    margin-top: 8px;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* 1. Force Questions to be Uppercase and Bold */
.question-text {
    color: var(--theme-color) !important;
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 800;
    /* Heavy weight */
    text-transform: uppercase;
    /* FORCED CONSISTENCY */
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--theme-glow);
}

/* 2. Ensure Options are Uppercase and Clean */
.tj-option-btn {
    text-transform: uppercase;
    /* FORCED CONSISTENCY */
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
}


.typing-cursor {
    color: var(--theme-color);
    font-weight: bold;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* =========================================================
   7. NEURAL BRIDGE (RADAR UPDATE)
   ========================================================= */
.bridge-loader {
    width: 80px;
    height: 80px;
    border: 2px solid #333;
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
}

.radar-sweep {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    background: linear-gradient(90deg, transparent, var(--theme-color));
    transform-origin: bottom left;
    animation: radarSpin 1.5s infinite linear;
    opacity: 0.5;
    border-radius: 0 100% 0 0;
}

@keyframes radarSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bridge-text {
    font-family: 'Courier New', monospace;
    color: var(--theme-color);
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--theme-glow);
    animation: blinkText 0.5s infinite alternate;
}

@keyframes blinkText {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* =========================================================
   8. FINAL SUBMISSION (FRIENDLY PULSE)
   ========================================================= */
/* FRIENDLY PROFILE CARD ANIMATION */
.holo-card-container {
    position: relative;
    overflow: hidden;
    background: #111;
    width: 300px;
    border-radius: 20px;
    /* Smooth rounded corners */
    border: none;
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    padding-bottom: 20px;
}

/* State 1: Loading (Breathing effect) */
.holo-card-container.pulsing {
    animation: softBreath 2s infinite ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes softBreath {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.2);
    }

    50% {
        transform: scale(1.0);
        box-shadow: 0 0 20px 10px rgba(0, 243, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

/* State 2: Success (Green Border Pop) */
.holo-card-container.success {
    transform: scale(1.05);
    /* Slight pop forward */
    border: 3px solid #00ff00;
    /* Clean Green Border */
    box-shadow: 0 15px 50px rgba(0, 255, 0, 0.3);
    animation: none;
    /* Stop breathing */
}

/* Hide the old scanner line if it exists in HTML */
.scanner-line,
.holo-scan-line {
    display: none !important;
}

/* Text Fade In */
.holo-data-row {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.holo-data-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.holo-photo-frame {
    width: 100%;
    height: 250px;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #333;
}

.user-core-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.holo-info {
    padding: 20px;
    text-align: center;
}

.holo-info h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.holo-meta-row {
    color: #888;
    font-size: 14px;
}

/* =========================================================
   9. SYSTEM TRANSITIONS & MICRO-STYLES
   ========================================================= */
.glitch-flash {
    animation: flashEffect 0.2s ease-out;
}

@keyframes flashEffect {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(3) contrast(1.5);
        background: var(--theme-color);
    }

    100% {
        filter: brightness(1);
    }
}

.gravity-overlay-ui {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: 0.8s;
}

.gravity-overlay-ui.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.tj-btn-glow {
    background: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    box-shadow: 0 0 20px var(--theme-glow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 380px) {
    .calibration-title {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .step-indicator {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
}

/* =========================================
   HEARTBEAT LOADER (FINAL SUBMISSION)
   ========================================= */

/* CONTAINER: Center the heart on the dark screen */
.heart-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* THE HEART ICON */
.beating-heart {
    font-size: 80px;
    /* Big and visible */
    color: #00f3ff;
    /* CYAN (Updated from Red) */
    animation: realisticHeartbeat 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.6));
    /* CYAN GLOW */
}

/* TEXT BELOW HEART */
.heart-text {
    margin-top: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadePulse 1.5s infinite;
}

/* KEYFRAMES: The "Thump-Thump" Rhythm */
@keyframes realisticHeartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

/* Text Fade Animation */
@keyframes fadePulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================
   DESKTOP UPGRADE: SPLIT SCREEN (NEON)
   ========================================= */
@media (min-width: 1024px) {

    /* 1. The Wrapper (Right Side Container) */
    #tujuane-onboarding-wrapper {
        width: 50vw !important;
        left: auto !important;
        /* Release Left Anchor */
        right: 0 !important;
        /* Force Right Anchor */
        background: #050505 !important;
        border-left: 1px solid #222;
        padding-left: 0;
        justify-content: center !important;
        gap: 30px !important;
        /* Add flex gap between header and content */
    }

    /* 2. Left Side: Cinematic Hero (Via Pseudo-element) */
    #tujuane-onboarding-wrapper::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 50vw;
        height: 100vh;
        background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2940&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        z-index: -1;
        filter: brightness(0.6) grayscale(20%);
        border-right: 1px solid rgba(0, 243, 255, 0.1);
    }

    /* 3. Tweaks for the Inner Content (Right Side) */
    .tujuane-header,
    .glass-panel,
    #dynamic-question-container {
        max-width: 480px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Ensure Header has breathing room */
    .tujuane-header {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        margin-top: 0 !important;
        margin-bottom: 40px !important;
        /* Force space below header */
    }

    .tujuane-header {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        margin-top: 0 !important;
    }

    .glass-panel,
    #dynamic-question-container {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none;
    }

    .calibration-title {
        font-size: 24px;
    }
}

/* ========================
   ACCORDION INTERESTS (Refined)
   ======================== */
.interest-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.accordion-item {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* The Clickable Header */
.accordion-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #1a1a1a;
}

.accordion-header:active {
    background: #222;
}

.acc-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-icon {
    color: #666;
    font-size: 12px;
    transition: transform 0.3s;
}

/* Selection Counter Badge (Hidden by default) */
.acc-count-badge {
    background: linear-gradient(135deg, #00f3ff, #ff00de);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    display: none;
    /* JS will show this */
}

/* The Hidden Pill Drawer */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #000;
    transition: max-height 0.3s ease-out;
}

.accordion-body.open {
    max-height: 500px;
    /* Arbitrary large height for animation */
    border-top: 1px solid #333;
}

.pills-cloud {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Refined Pill Style */
.interest-pill {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #444;
    background: #111;
    color: #bbb;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.interest-pill.selected {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Active State for the Item Wrapper */
.accordion-item.active {
    border-color: #555;
}

.accordion-item.active .acc-icon {
    transform: rotate(180deg);
    color: #fff;
}

/* ... keep your existing CSS ... */

/* VIEW MODE PILLS (For the Profile Modal/Preview) */
.view-mode-pill {
    display: inline-block;
    padding: 5px 12px;
    margin: 3px 3px 3px 0;
    border-radius: 20px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* =========================================
   10. NOTIFICATION SELECTION
   ========================================= */
.notification-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.tj-notification-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tj-notification-card:hover {
    background: rgba(0, 243, 255, 0.03);
    border-color: #444;
    transform: translateY(-2px);
}

.tj-notification-card.selected {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--theme-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.notif-check {
    width: 20px;
    height: 20px;
    border: 2px solid #444;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tj-notification-card.selected .notif-check {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.tj-notification-card.selected .notif-check::after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: 800;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.notif-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notif-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.notif-title {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notif-subtitle {
    color: #888;
    font-size: 11px;
    margin-top: 2px;
}

.tj-btn-action.disabled {
    background: #222 !important;
    color: #555 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}