/* WB TAXI — Futuristic Cyber Dark Glassmorphism Design System (With 4-Angle Car Silhouette Frames) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #07090e;
    --bg-canvas: #0c1017;
    
    --glass-card: rgba(18, 24, 38, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-active: rgba(255, 199, 44, 0.35);
    
    --brand-yellow: #ffc72c;
    --brand-gold: #ff9100;
    --brand-yellow-glow: rgba(255, 199, 44, 0.25);
    
    --neon-green: #10b981;
    --neon-green-glow: rgba(16, 185, 129, 0.25);
    
    --neon-blue: #3b82f6;
    --neon-purple: #8b5cf6;
    --neon-red: #ef4444;
    
    --text-heading: #f8fafc;
    --text-body: #cbd5e1;
    --text-muted: #64748b;
    
    --input-bg: rgba(11, 15, 25, 0.8);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus: #ffc72c;
    
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --shadow-glow: 0 10px 40px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 199, 44, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
    color: var(--text-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 16px 12px;
}

.app-portal {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Custom Cyber Notification Banner */
.cyber-toast-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 440px;
    background: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--neon-red);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideDownToast 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-toast-banner.toast-success {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cyber-toast-banner.toast-success .toast-icon {
    color: var(--neon-green);
}

@keyframes slideDownToast {
    from { opacity: 0; transform: translate(-50%, -20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 20px;
    color: var(--neon-red);
}

.toast-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
}

/* Document Selection Modal (Pasport vs ID Karta) */
.doc-select-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.doc-select-card {
    background: var(--glass-card);
    border: 1px solid var(--glass-border-active);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-glow);
}

.doc-select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doc-select-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
}

.doc-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.doc-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.doc-option-card:hover {
    border-color: var(--brand-yellow);
    background: rgba(255, 199, 44, 0.08);
    transform: translateY(-2px);
}

.doc-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 199, 44, 0.12);
    color: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.doc-option-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-heading);
}

.doc-option-desc {
    font-size: 11px;
    color: var(--text-muted);
}

/* En-enlarged Camera Viewfinder Modal with Frame Guides */
.camera-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.camera-video-stream {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-viewfinder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    pointer-events: none;
}

.camera-header-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.camera-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(0,0,0,0.6);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.camera-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

/* Frame Guides */
.viewfinder-frame {
    position: relative;
    border: 3px solid var(--brand-yellow);
    box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.65), 0 0 20px var(--brand-yellow-glow);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewfinder-frame.frame-passport {
    width: 82vw;
    height: 115vw;
    max-width: 340px;
    max-height: 476px;
}

.viewfinder-frame.frame-idcard {
    width: 86vw;
    height: 55vw;
    max-width: 360px;
    max-height: 230px;
}

.viewfinder-frame.frame-selfie {
    width: 68vw;
    height: 92vw;
    max-width: 290px;
    max-height: 390px;
    border-radius: 50% / 42%;
}

/* Car Silhouette Viewfinder Frames (Front, Back, Side) */
.viewfinder-frame.frame-car-front,
.viewfinder-frame.frame-car-back {
    width: 88vw;
    height: 65vw;
    max-width: 370px;
    max-height: 270px;
    border-style: dashed;
}

.viewfinder-frame.frame-car-side {
    width: 92vw;
    height: 50vw;
    max-width: 390px;
    max-height: 210px;
    border-style: dashed;
}

/* Car Silhouette SVG Overlay Vector Style */
.car-silhouette-svg {
    width: 85%;
    height: 85%;
    stroke: var(--brand-yellow);
    stroke-width: 2;
    fill: rgba(255, 199, 44, 0.05);
    stroke-dasharray: 6;
    animation: dashGlow 4s infinite linear;
}

@keyframes dashGlow {
    to { stroke-dashoffset: -36; }
}

.viewfinder-frame.aligned-green {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2000px rgba(0, 0, 0, 0.65), 0 0 30px var(--neon-green-glow);
}

/* Frame Corner Brackets */
.frame-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 4px solid var(--brand-yellow);
    transition: border-color 0.3s ease;
}

.viewfinder-frame.aligned-green .frame-corner {
    border-color: var(--neon-green);
}

.corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 12px; }
.corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 12px; }
.corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 12px; }
.corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 12px; }

.frame-guide-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: var(--brand-yellow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.viewfinder-frame.aligned-green .frame-guide-text {
    color: var(--neon-green);
}

/* Shutter Capture Button */
.camera-controls-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    pointer-events: auto;
}

.shutter-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    border: 4px solid #ffffff;
    color: #000;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 0 30px var(--brand-yellow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.shutter-btn:active {
    transform: scale(0.92);
}

/* Telegram Only Modal */
.telegram-only-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    width: 100%;
    padding: 20px;
}

.cyber-modal-card {
    background: var(--glass-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border-active);
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255, 199, 44, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cyber-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
    100% { transform: scale(1.06); box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }
}

/* Header Bar */
.cyber-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 20px var(--brand-yellow-glow);
}

.brand-text h1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.2px;
}

.brand-text span {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-pill-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3px;
}

.lang-pill {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.lang-pill.active {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    color: #000;
    box-shadow: 0 2px 10px var(--brand-yellow-glow);
}

/* Dashboard Progress Box */
.cyber-dashboard-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.cyber-dashboard-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 199, 44, 0.05), transparent 60%);
    pointer-events: none;
}

.gauge-box {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.gauge-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
}

.gauge-fill {
    fill: none;
    stroke: url(#yellowGradient);
    stroke-width: 6;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease-in-out;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-heading);
}

.dashboard-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dash-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-heading);
}

.dash-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* 5 Steps Circular Navbar */
.cyber-step-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.nav-step-item {
    background: var(--glass-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.nav-step-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-step-item.active {
    border-color: var(--glass-border-active);
    background: rgba(255, 199, 44, 0.08);
    box-shadow: 0 4px 20px rgba(255, 199, 44, 0.15);
}

.nav-step-item.active .nav-step-icon {
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    border-color: transparent;
    color: #000;
    box-shadow: 0 0 15px var(--brand-yellow-glow);
}

.nav-step-item.active .nav-step-title {
    color: var(--brand-yellow);
}

.nav-step-item.completed .nav-step-icon {
    background: var(--neon-green);
    border-color: transparent;
    color: #000;
}

/* Glass Main Content Card */
.cyber-content-card {
    background: var(--glass-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-glow);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-main-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Form Controls */
.cyber-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cyber-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-prefix {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition);
}

.cyber-input {
    width: 100%;
    padding: 15px 16px 15px 44px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--text-heading);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.cyber-input:focus {
    border-color: var(--input-focus);
    background: rgba(18, 24, 38, 0.95);
    box-shadow: 0 0 20px var(--brand-yellow-glow);
}

.cyber-input:focus + .input-icon-prefix, .input-box-wrapper:focus-within .input-icon-prefix {
    color: var(--brand-yellow);
}

select.cyber-input {
    cursor: pointer;
}

select.cyber-input option {
    background: #0f1522;
    color: #fff;
}

/* Document & Photo Interactive Checklist */
.checklist-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cyber-check-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.cyber-check-item:hover, .cyber-check-item.active {
    border-color: var(--glass-border-active);
    background: rgba(255, 199, 44, 0.05);
}

.check-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon-bg {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.check-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
}

.cyber-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-pending {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-done {
    background: rgba(16, 185, 129, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* REAL-TIME SCANNER LASER UI WIDGET */
.scanner-box {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--brand-yellow);
    box-shadow: 0 0 25px var(--brand-yellow-glow);
    margin-top: 10px;
    background: #000;
}

.scanner-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scanner-laser-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffc72c, #00f2fe, #ffc72c, transparent);
    box-shadow: 0 0 15px #ffc72c, 0 0 30px #00f2fe;
    animation: scanAnimation 1.8s infinite ease-in-out;
}

.scanner-laser-line.stopped {
    display: none !important;
    animation: none !important;
}

@keyframes scanAnimation {
    0% { top: 0%; }
    50% { top: 96%; }
    100% { top: 0%; }
}

.scanner-overlay-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 9, 14, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--brand-yellow);
    color: var(--brand-yellow);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    white-space: nowrap;
}

/* Upload Panel Card */
.upload-cyber-panel {
    background: rgba(11, 15, 25, 0.6);
    border: 1px dashed var(--glass-border-active);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.upload-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upload-bullets li {
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-bullets li i {
    color: var(--brand-yellow);
    font-size: 12px;
}

/* Cyber Buttons */
.btn-cyber-primary {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    border: none;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-gold));
    color: #000;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 25px var(--brand-yellow-glow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cyber-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 199, 44, 0.4);
}

.btn-cyber-secondary {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-heading);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cyber-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-subtle {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    padding: 8px;
}

.btn-ghost-subtle:hover {
    color: var(--text-body);
}

.cyber-security-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    padding: 8px;
}
