@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:wght@300;400;500;600;700&family=Press+Start+2P&display=swap');

:root {
    --neon-blue: #00f3ff;
    --neon-purple: #9d00ff;
    --neon-pink: #ff00e4;
    --neon-green: #00ff66;
    --dark-bg: #0f1222;
    --darker-bg: #080b14;
    --card-bg: #161b2f;
    --sidebar-bg: #0c0f1a;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    min-height: 100vh;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.pixel {
    font-family: 'Press Start 2P', cursive;
}

.neon-text-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.neon-text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 5px rgba(157, 0, 255, 0.5);
}

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 5px rgba(255, 0, 228, 0.5);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.5);
}

.neon-border-blue {
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.neon-border-purple {
    border: 1px solid rgba(157, 0, 255, 0.3);
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.2);
}

.neon-border-pink {
    border: 1px solid rgba(255, 0, 228, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 228, 0.2);
}

.neon-border-green {
    border: 1px solid rgba(0, 255, 102, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.sidebar {
    background-color: var(--sidebar-bg);
    border-right: 1px solid rgba(157, 0, 255, 0.1);
}

.sidebar-link {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background-color: rgba(157, 0, 255, 0.1);
    border-left: 3px solid var(--neon-purple);
}

.sidebar-link.active {
    background-color: rgba(157, 0, 255, 0.15);
    border-left: 3px solid var(--neon-purple);
}

.card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.grid-bg {
    background-image: 
        linear-gradient(rgba(157, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.status-confirmed {
    background-color: rgba(0, 255, 102, 0.15);
    color: var(--neon-green);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-cancelled {
    background-color: rgba(255, 0, 228, 0.15);
    color: var(--neon-pink);
}

.btn-confirm {
    background-color: rgba(0, 255, 102, 0.2);
    color: var(--neon-green);
    transition: all 0.3s ease;
}

.btn-confirm:hover {
    background-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.btn-cancel {
    background-color: rgba(255, 0, 228, 0.2);
    color: var(--neon-pink);
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background-color: rgba(255, 0, 228, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 228, 0.3);
}

.btn-view {
    background-color: rgba(0, 243, 255, 0.2);
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.table-row {
    transition: all 0.2s ease;
}

.table-row:hover {
    background-color: rgba(157, 0, 255, 0.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(12, 15, 26, 0.8);
}

::-webkit-scrollbar-thumb {
    background: rgba(157, 0, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(157, 0, 255, 0.7);
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--neon-pink);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(255, 0, 228, 0.5);
}

/* Scan line effect */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: scanline 8s linear infinite;
    pointer-events: none;
    z-index: 999;
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Chart styles */
.chart-container {
    position: relative;
    height: 200px;
    width: 100%;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    width: 8%;
    background: linear-gradient(to top, rgba(157, 0, 255, 0.7), rgba(0, 243, 255, 0.7));
    border-radius: 3px 3px 0 0;
    transition: height 1s ease;
}

.chart-label {
    position: absolute;
    bottom: -25px;
    width: 8%;
    text-align: center;
    font-size: 10px;
    color: #a0aec0;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(157, 0, 255, 0.2);
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--neon-purple);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
} 