/* ============================================
   EdgeWallet — Futuristic Neon Dashboard
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Dark futuristic palette */
    --bg-body: #050505;
    --bg-sidebar: rgba(10, 10, 10, 0.95);
    --bg-card: rgba(15, 15, 15, 0.55);
    --bg-input: rgba(10, 10, 10, 0.7);

    /* Neon accents */
    --neon-blue: #ffffff;
    --neon-purple: #888888;
    --neon-pink: #cccccc;
    --neon-green: #ffffff;
    --neon-orange: #dddddd;
    --neon-cyan: #eeeeee;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #555555, #888888, #aaaaaa);
    --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(200, 200, 200, 0.05), rgba(150, 150, 150, 0.03));
    --grad-sidebar: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%, rgba(200, 200, 200, 0.04) 100%);

    /* Glass */
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-hover: rgba(255, 255, 255, 0.12);

    /* Shadows */
    --glow-blue: 0 0 30px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
    --glow-purple: 0 0 30px rgba(200, 200, 200, 0.2), 0 0 60px rgba(200, 200, 200, 0.05);
    --glow-pink: 0 0 20px rgba(150, 150, 150, 0.15);

    /* Text */
    --text-main: #e2e8f0;
    --text-bright: #ffffff;
    --text-muted: #999999;
    --text-dim: #666666;

    /* Layout */
    --sidebar-width: 280px;
    --radius: 1rem;
    --radius-lg: 1.25rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ── Animated background mesh ── */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(200, 200, 200, 0.06), transparent),
        radial-gradient(ellipse 50% 60% at 50% 10%, rgba(255, 255, 255, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
    animation: auroraShift 15s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

    50% {
        opacity: 0.8;
        
    }

    100% {
        opacity: 1;
        
    }
}

/* Floating orbs */
body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-50px, 80px) scale(1.1);
    }

    66% {
        transform: translate(30px, -40px) scale(0.9);
    }
}

/* ── Layout ── */
.dashboard {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ╔══════════════════════════════════════════════╗
   ║          SIDEBAR                             ║
   ╚══════════════════════════════════════════════╝ */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    backdrop-filter: blur(30px) saturate(1.2);
    background-image: var(--grad-sidebar);
}

.sidebar-header {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), rgba(200, 200, 200, 0.4), transparent);
}

.sidebar-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sidebar-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.sidebar-header h1 span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-subtitle {
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* ── Navigation ── */
.sidebar-nav {
    padding: 1.25rem 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    margin-bottom: 0.35rem;
    border-radius: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.nav-item:hover {
    color: var(--text-bright);
}

.nav-item:hover::before {
    opacity: 0.06;
}

.nav-item.active {
    color: white;
    background: transparent;
}

.nav-item.active::before {
    opacity: 1;
}

.nav-item.active {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-text {
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ── System Status ── */
.system-status {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.system-status h3 {
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: all 0.4s;
}

.status-dot.online {
    background: var(--neon-green);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    animation: neonPulse 2s infinite;
}

.status-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(150, 150, 150, 0.4);
    animation: none;
}

.status-value {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

@keyframes neonPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    }
}

/* ── Sidebar Footer ── */
.sidebar-footer {
    margin-top: auto;
    padding: 1.25rem 1rem;
    border-top: 1px solid var(--glass-border);
}

.team-info,
.uptime {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.team-label,
.uptime-label {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-value {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.uptime-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ── Connection Indicator ── */
.connection-indicator {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: all 0.4s;
}

.indicator-dot.connected {
    background: var(--neon-green);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    animation: neonPulse 2s infinite;
}

/* ╔══════════════════════════════════════════════╗
   ║          MAIN CONTENT                        ║
   ╚══════════════════════════════════════════════╝ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 1.75rem;
    min-height: 100vh;
    position: relative;
}

/* ── Stats Grid ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.stat-card-main {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card-main:hover {
    transform: translateY(-3px);
    border-color: var(--glass-border-hover);
}

.stat-card-main:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-icon-purple {
    background: rgba(200, 200, 200, 0.1);
    color: var(--neon-purple);
    box-shadow: inset 0 0 20px rgba(200, 200, 200, 0.05);
}

.stat-icon-blue {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-blue);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.stat-icon-green {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-green);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.stat-icon-orange {
    background: rgba(200, 200, 200, 0.08);
    color: var(--neon-orange);
    box-shadow: inset 0 0 20px rgba(200, 200, 200, 0.05);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-main .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    font-family: 'JetBrains Mono', monospace;
}

/* ── Content Grid ── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.transaction-section {
    grid-column: 1 / -1;
}

/* ╔══════════════════════════════════════════════╗
   ║          GLASS CARDS                         ║
   ╚══════════════════════════════════════════════╝ */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Animated gradient border on hover */
.glass-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(200, 200, 200, 0.2), rgba(150, 150, 150, 0.1), transparent, transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card h3 {
    font-size: 1.05rem;
    margin-bottom: 1.15rem;
    color: var(--text-bright);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-card h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border-hover), transparent);
    margin-left: 0.5rem;
}

/* ╔══════════════════════════════════════════════╗
   ║     HOLOGRAPHIC MASTERCARD                   ║
   ╚══════════════════════════════════════════════╝ */
.card-visual-container {
    perspective: 1200px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Card Flipper (wraps front + back) */
.card-flipper {
    width: 100%;
    max-width: 380px;
    height: 230px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-flipper.flipped {
    transform: rotateY(180deg);
}

.card-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #222 30%, #1a1a1a 60%, #0a0a0a 100%);
    border-radius: 1.1rem;
    padding: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.6s, filter 0.6s, border-color 0.6s, box-shadow 0.6s;
    opacity: 0.45;
    filter: grayscale(0.4) brightness(0.7);
    overflow: hidden;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-front {
    z-index: 2;
}

.card-back {
    transform: rotateY(180deg);
    z-index: 1;
    opacity: 1;
    filter: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #222 100%);
}

/* Holographic shimmer */
.card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.03) 30%,
            rgba(200, 200, 200, 0.05) 40%,
            rgba(150, 150, 150, 0.03) 50%,
            transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: holoShimmer 6s ease-in-out infinite;
}

@keyframes holoShimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

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

/* Grid pattern overlay */
.card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 255, 255, 0.01) 30px, rgba(255, 255, 255, 0.01) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255, 255, 255, 0.01) 30px, rgba(255, 255, 255, 0.01) 31px);
    pointer-events: none;
    z-index: 1;
}

.card-visual.active {
    opacity: 1;
    filter: grayscale(0) brightness(1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(200, 200, 200, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Card elements */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.6), rgba(100, 100, 100, 0.7));
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 10px rgba(100, 100, 100, 0.2);
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.card-contactless {
    width: 28px;
    height: 28px;
    position: relative;
    opacity: 0.6;
}

.card-contactless span {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-45deg);
}

.card-contactless span:nth-child(1) {
    width: 10px;
    height: 10px;
    bottom: 2px;
    right: 8px;
}

.card-contactless span:nth-child(2) {
    width: 16px;
    height: 16px;
    bottom: 2px;
    right: 5px;
}

.card-contactless span:nth-child(3) {
    width: 22px;
    height: 22px;
    bottom: 2px;
    right: 2px;
}

.card-number {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.card-label {
    display: block;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Outfit', sans-serif;
}

.card-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'JetBrains Mono', monospace;
}

/* Mastercard Circles */
.card-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mc-circles {
    display: flex;
    position: relative;
    width: 44px;
    height: 28px;
}

.mc-circles .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

.mc-circles .circle:first-child {
    background: rgba(60, 60, 60, 0.85);
    left: 0;
    box-shadow: 0 0 10px rgba(60, 60, 60, 0.3);
}

.mc-circles .circle:last-child {
    background: rgba(180, 180, 180, 0.85);
    left: 16px;
    mix-blend-mode: hard-light;
    box-shadow: 0 0 10px rgba(180, 180, 180, 0.3);
}

/* ── Status & Data ── */
.status-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-placeholder {
    color: var(--text-dim);
    font-style: italic;
    text-align: center;
    padding: 1.25rem 0;
    font-size: 0.85rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.data-label {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.data-value {
    font-weight: 600;
    color: var(--text-main);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
}

/* ╔══════════════════════════════════════════════╗
   ║          FORMS                               ║
   ╚══════════════════════════════════════════════╝ */
.input-group {
    margin-bottom: 1.1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input,
select {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--glass-border);
    border-radius: 0.65rem;
    padding: 0.7rem 0.9rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
    background: rgba(8, 12, 30, 0.9);
}

input::placeholder {
    color: var(--text-dim);
}

select option {
    background: #0c1030;
    color: var(--text-main);
}

/* Buttons */
button {
    width: 100%;
    background: var(--grad-primary);
    color: white;
    border: none;
    border-radius: 0.7rem;
    padding: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35), 0 0 15px rgba(200, 200, 200, 0.15);
}

button:hover:not(:disabled)::after {
    opacity: 1;
}

button:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ╔══════════════════════════════════════════════╗
   ║          TRANSACTIONS                        ║
   ╚══════════════════════════════════════════════╝ */
.transaction-list {
    max-height: 400px;
    overflow-y: auto;
}

.transaction-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem;
    background: rgba(8, 12, 30, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 0.65rem;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(3px);
    border-color: var(--glass-border-hover);
}

.transaction-item.topup {
    border-left: 2px solid var(--neon-green);
}

.transaction-item.debit {
    border-left: 2px solid var(--neon-pink);
}

.transaction-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.transaction-item.topup .transaction-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--neon-green);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.transaction-item.debit .transaction-icon {
    background: rgba(150, 150, 150, 0.08);
    color: var(--neon-pink);
    border: 1px solid rgba(150, 150, 150, 0.15);
    text-shadow: 0 0 8px rgba(150, 150, 150, 0.3);
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-desc {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.transaction-time {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.transaction-amount {
    text-align: right;
    flex-shrink: 0;
}

.amount-value {
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.1rem;
}

.amount-value.positive {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.amount-value.negative {
    color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(150, 150, 150, 0.2);
}

.balance-after {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ╔══════════════════════════════════════════════╗
   ║          MARKETPLACE                         ║
   ╚══════════════════════════════════════════════╝ */
.marketplace-view {
    display: none;
}

.marketplace-view.active-view {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.category-tab {
    width: auto;
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    background: rgba(8, 12, 30, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    transform: none;
    box-shadow: none;
}

.category-tab.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}

.category-tab::before,
.category-tab::after {
    display: none;
}

/* Product Grid */
.marketplace-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 0.85rem;
    max-height: calc(100vh - 320px);
    overflow-y: auto;
    padding-right: 4px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.1rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--glow-purple);
}

.product-card:hover::before {
    opacity: 1;
}

.product-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.product-card:hover .product-emoji {
    transform: scale(1.2) translateY(-2px);
}

.product-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.product-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--neon-cyan);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    margin-bottom: 0.5rem;
}

.product-add-btn {
    width: 100%;
    padding: 0.35rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--neon-blue);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: none;
}

.product-add-btn:hover {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    transform: none;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
}

.product-add-btn::before,
.product-add-btn::after {
    display: none;
}

/* ── Cart ── */
.cart-section {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 200px);
    position: sticky;
    top: 1.75rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--glass-border);
}

.cart-header h3 {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-bright);
}

.cart-header h3::after {
    display: none;
}

.cart-badge {
    background: var(--grad-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 1rem;
    min-width: 20px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(8, 12, 30, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.cart-item:hover {
    border-color: var(--glass-border-hover);
}

.cart-item-emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.qty-btn {
    width: 22px;
    height: 22px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neon-blue);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: none;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--grad-primary);
    color: white;
    transform: none;
    box-shadow: none;
}

.qty-btn::before,
.qty-btn::after {
    display: none;
}

.qty-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-bright);
    min-width: 16px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
}

/* Cart footer */
.cart-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 0.7rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.cart-total-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-green);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.cart-pay-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #ffffff, #00cc6a);
    color: #050816;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.03em;
}

.cart-pay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
}

.cart-pay-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cart-pay-btn::before,
.cart-pay-btn::after {
    display: none;
}

.cart-empty {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.cart-empty-icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
    display: block;
    opacity: 0.3;
}

.cart-card-info {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 0.7rem;
}

.cart-card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
    transition: all 0.3s;
}

.cart-card-dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.cart-card-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.cart-card-text strong {
    color: var(--text-bright);
}

/* Payment result */
.marketplace-result {
    margin-top: 0.5rem;
    padding: 0.55rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    text-align: center;
    animation: resultSlideIn 0.3s ease;
}

.marketplace-result.success {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--neon-green);
}

.marketplace-result.error {
    background: rgba(150, 150, 150, 0.06);
    border: 1px solid rgba(150, 150, 150, 0.15);
    color: var(--neon-pink);
}

@keyframes resultSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* ── Cashier view ── */
#cashier-view .data-value {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 1.05rem;
    font-family: 'JetBrains Mono', monospace;
}

/* ── Input help ── */
.input-help {
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    display: block;
}

/* ╔══════════════════════════════════════════════╗
   ║     CARD BACK SIDE                            ║
   ╚══════════════════════════════════════════════╝ */
.card-back-stripe {
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(200, 200, 200, 0.5), rgba(150, 150, 150, 0.4));
    margin-bottom: 0.75rem;
    border-radius: 0 0 4px 4px;
}

.card-back-content {
    flex: 1;
    padding: 0 0.5rem;
    overflow: hidden;
}

.card-back-title {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}

.card-back-transactions {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-back-tx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    font-family: 'JetBrains Mono', monospace;
    padding: 0.2rem 0.3rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
}

.card-back-tx .tx-desc {
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-back-tx .tx-amount {
    font-weight: 600;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.card-back-tx .tx-amount.positive {
    color: var(--neon-green);
}

.card-back-tx .tx-amount.negative {
    color: var(--neon-pink);
}

.card-back-empty {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    text-align: center;
    padding: 1rem 0;
    font-style: italic;
}

.card-back-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.card-back-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.card-back-brand span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-back-rfid {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    font-family: 'JetBrains Mono', monospace;
}

/* ╔══════════════════════════════════════════════╗
   ║     PARTICLE & CONFETTI CANVAS                ║
   ╚══════════════════════════════════════════════╝ */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

/* ╔══════════════════════════════════════════════╗
   ║     TOAST NOTIFICATIONS                       ║
   ╚══════════════════════════════════════════════╝ */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    pointer-events: none;
}

.toast {
    background: rgba(10, 15, 40, 0.92);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 0.85rem;
    padding: 0.9rem 1.2rem;
    min-width: 300px;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: all;
    animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    border-radius: 3px 0 0 3px;
}

.toast.success {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.06);
}

.toast.success::before {
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.toast.error {
    border-color: rgba(150, 150, 150, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(150, 150, 150, 0.06);
}

.toast.error::before {
    background: var(--neon-pink);
    box-shadow: 0 0 10px rgba(150, 150, 150, 0.5);
}

.toast.info {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.06);
}

.toast.info::before {
    background: var(--neon-blue);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.toast.warning {
    border-color: rgba(200, 200, 200, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 200, 200, 0.06);
}

.toast.warning::before {
    background: var(--neon-orange);
    box-shadow: 0 0 10px rgba(200, 200, 200, 0.5);
}

.toast-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px currentColor);
}

.toast-body {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-bright);
    margin-bottom: 0.1rem;
}

.toast-message {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 0.2rem;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s;
    width: auto;
    box-shadow: none;
}

.toast-close:hover {
    color: var(--text-bright);
    transform: none;
    box-shadow: none;
}

.toast-close::before,
.toast-close::after {
    display: none;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 0 0 0.85rem 0.85rem;
    animation: toastProgress 4s linear forwards;
}

.toast.exiting {
    animation: toastSlideOut 0.4s ease forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* ╔══════════════════════════════════════════════╗
   ║     LIVE ACTIVITY TICKER                      ║
   ╚══════════════════════════════════════════════╝ */
.live-ticker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 15, 40, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 8px rgba(150, 150, 150, 0.4);
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 8px rgba(150, 150, 150, 0.6);
    animation: tickerPulse 1.5s infinite;
}

@keyframes tickerPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(150, 150, 150, 0.6);
    }

    50% {
        opacity: 0.3;
        box-shadow: 0 0 4px rgba(150, 150, 150, 0.3);
    }
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
    display: flex;
    gap: 2.5rem;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.ticker-item .ticker-type {
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 0.3rem;
    font-size: 0.55rem;
    text-transform: uppercase;
}

.ticker-item .ticker-type.topup {
    color: var(--neon-green);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ticker-item .ticker-type.payment {
    color: var(--neon-pink);
    background: rgba(150, 150, 150, 0.08);
    border: 1px solid rgba(150, 150, 150, 0.15);
}

.ticker-item .ticker-amount {
    font-weight: 600;
    color: var(--neon-cyan);
}

.ticker-item .ticker-separator {
    color: var(--text-dim);
    font-size: 0.4rem;
}

/* ╔══════════════════════════════════════════════╗
   ║     AMBIENT BREATHING GLOW                    ║
   ╚══════════════════════════════════════════════╝ */
.glass-card {
    animation: ambientBreathe 6s ease-in-out infinite;
}

.glass-card:nth-child(2) {
    animation-delay: -2s;
}

.glass-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes ambientBreathe {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0), 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.04), 0 4px 30px rgba(0, 0, 0, 0.2);
    }
}

/* ╔══════════════════════════════════════════════╗
   ║     ANIMATED COUNTER                          ║
   ╚══════════════════════════════════════════════╝ */
.stat-card-main .stat-value {
    transition: transform 0.3s ease;
}

.stat-card-main .stat-value.counting {
    animation: counterPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes counterPop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.15);
        color: var(--neon-cyan);
    }

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

/* ╔══════════════════════════════════════════════╗
   ║          RESPONSIVE                          ║
   ╚══════════════════════════════════════════════╝ */
@media (max-width: 1400px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marketplace-view.active-view {
        grid-template-columns: 1fr 260px;
    }
}

@media (max-width: 1000px) {
    .marketplace-view.active-view {
        grid-template-columns: 1fr;
    }

    .cart-section {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }

    .main-content {
        margin-left: 0;
    }

    .dashboard {
        flex-direction: column;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-ticker {
        display: none;
    }

    .toast-container {
        right: 0.5rem;
        left: 0.5rem;
    }

    .toast {
        min-width: auto;
    }
}