/* CEVE SECURITY TERMINAL - CYBERPUNK HACKER THEME */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary-green: #00ff00;
    --secondary-green: #00cc00;
    --dark-green: #008800;
    --neon-blue: #00ffff;
    --neon-red: #ff0040;
    --neon-orange: #ff8000;
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --terminal-bg: #001100;
    --panel-bg: rgba(0, 20, 0, 0.95);
    --border-color: #00ff00;
    --text-primary: #00ff00;
    --text-secondary: #00cc88;
    --text-warning: #ffaa00;
    --text-error: #ff4444;
    --glow-green: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    --glow-blue: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    --glow-red: 0 0 10px #ff0040, 0 0 20px #ff0040, 0 0 30px #ff0040;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Matrix Rain Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

/* Glitch Overlay Effect */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 0, 0.03) 50%,
        transparent 100%
    );
    animation: glitch-scan 3s infinite;
}

@keyframes glitch-scan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Boot Sequence Overlay */
.boot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

.terminal-window {
    width: 80%;
    max-width: 800px;
    background: var(--terminal-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--glow-green);
    overflow: hidden;
}

.terminal-header {
    background: rgba(0, 255, 0, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.terminal-controls {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.control-btn.close { background: var(--neon-red); }
.control-btn.minimize { background: var(--neon-orange); }
.control-btn.maximize { background: var(--primary-green); }

.skip-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skip-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px var(--neon-blue);
    transform: translateY(-1px);
}

/* Exit Door Button */
.exit-door {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.door-frame {
    position: relative;
    width: 50px;
    height: 65px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #444;
    border-radius: 6px 6px 2px 2px;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.door-panel {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a3a3a 0%, #222 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    border: 1px solid #555;
    transition: all 0.3s ease;
}

.door-handle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    box-shadow: 
        0 0 3px rgba(255, 255, 255, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.door-shadow {
    position: absolute;
    top: -2px;
    left: 52px;
    width: 20px;
    height: 69px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 30%, 
        rgba(255, 255, 255, 0.1) 60%, 
        transparent 100%);
    border-radius: 0 8px 8px 0;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: blur(1px);
}

.exit-door:hover .door-frame {
    transform: translateX(-3px);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.9),
        3px 0 8px rgba(0, 0, 0, 0.3);
}

.exit-door:hover .door-panel {
    background: linear-gradient(135deg, #4a4a4a 0%, #333 100%);
    border-color: #666;
}

.exit-door:hover .door-handle {
    background: #aaa;
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 0.5),
        inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.exit-door:hover .door-shadow {
    width: 30px;
    opacity: 0.8;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.3) 30%, 
        rgba(255, 255, 255, 0.1) 60%, 
        transparent 100%);
}

.exit-door:active .door-frame {
    transform: translateX(-1px);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Mobile responsive for exit door */
@media screen and (max-width: 768px) {
    .exit-door {
        bottom: 15px;
        right: 15px;
    }
    
    .door-frame {
        width: 40px;
        height: 52px;
    }
    
    .door-handle {
        width: 5px;
        height: 5px;
        right: 6px;
    }
    
    .door-shadow {
        left: 42px;
        width: 16px;
        height: 56px;
    }
}

.terminal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.terminal-body {
    padding: 20px;
    min-height: 300px;
    background: var(--dark-bg);
}

.boot-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.boot-text .line {
    display: none;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.boot-text .success {
    color: var(--secondary-green);
    font-weight: bold;
}

.cursor {
    color: var(--primary-green);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Authentication Interface */
.auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
}

.security-frame {
    position: relative;
    background: var(--panel-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--glow-green);
    backdrop-filter: blur(10px);
}

/* Security Frame Corners */
.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--neon-blue);
}

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

.security-header {
    text-align: center;
    margin-bottom: 30px;
}

.warning-indicator {
    font-size: 48px;
    color: var(--neon-orange);
    margin-bottom: 10px;
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.access-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: var(--glow-green);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.security-badge {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    animation: glow-pulse 2s infinite;
}

.attempt-counter {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
}

.attempt-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

.attempt-value {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: bold;
    text-shadow: var(--glow-green);
    transition: color 0.3s ease;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 5px var(--neon-red); }
    50% { box-shadow: 0 0 20px var(--neon-red), 0 0 30px var(--neon-orange); }
}

/* Biometric Scanner */
.biometric-scanner {
    position: relative;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    animation: scanner-sweep 2s infinite;
}

.scanner-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

@keyframes scanner-sweep {
    0% { transform: translateY(0); }
    100% { transform: translateY(78px); }
}

/* Form Styles */
.auth-form {
    margin: 30px 0;
}

.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
}

.security-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.security-input:focus {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    background: rgba(0, 20, 20, 0.8);
}

.security-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.input-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: input-scan 3s infinite;
    pointer-events: none;
}

@keyframes input-scan {
    0%, 70% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Button Styles */
.auth-buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid;
    border-radius: 8px;
    background: transparent;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-primary:hover {
    background: var(--border-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-green);
}

.btn-secondary {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: var(--glow-blue);
}

.btn-icon {
    font-size: 16px;
}

/* Error Display */
.error-display {
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid var(--neon-red);
    border-radius: 6px;
    padding: 12px;
    color: var(--neon-red);
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    display: none;
    animation: error-flash 0.5s ease;
}

@keyframes error-flash {
    0%, 100% { background: rgba(255, 0, 64, 0.1); }
    50% { background: rgba(255, 0, 64, 0.3); }
}

/* Security Footer */
.security-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
}

.status-indicators {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-secondary);
}

.indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-green);
    box-shadow: 0 0 4px var(--secondary-green);
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Admin Control Panel */
.control-panel {
    min-height: 100vh;
    background: var(--darker-bg);
    color: var(--text-primary);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: var(--panel-bg);
    border-bottom: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.cyber-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: var(--glow-green);
    letter-spacing: 3px;
}

.logo-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: -5px;
}

.status-bar {
    display: flex;
    gap: 30px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-label {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.status-value {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
}

.status-value.online {
    color: var(--secondary-green);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--secondary-green);
}

.status-value.secure {
    color: var(--neon-blue);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
}

.status-value.admin {
    color: var(--neon-orange);
    background: rgba(255, 128, 0, 0.1);
    border: 1px solid var(--neon-orange);
}

.time-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    text-align: right;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Control Grid */
.panel-body {
    padding: 30px;
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.control-module {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.control-module:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.module-title {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.module-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.module-status.online { background: var(--secondary-green); }
.module-status.active { background: var(--neon-blue); }
.module-status.monitoring { background: var(--neon-orange); }
.module-status.ready { background: var(--primary-green); }

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.module-content {
    padding: 25px;
}

/* System Metrics */
.metric {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.metric-label {
    min-width: 100px;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    border-radius: 3px;
    animation: metric-glow 2s infinite;
}

.metric-fill.cpu {
    width: 23%;
    background: linear-gradient(90deg, var(--secondary-green), var(--primary-green));
}

.metric-fill.memory {
    width: 67%;
    background: linear-gradient(90deg, var(--neon-blue), var(--primary-green));
}

.metric-fill.network {
    width: 89%;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-red));
}

@keyframes metric-glow {
    0%, 100% { box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4); }
}

.metric-value {
    min-width: 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

/* Mission Items */
.mission-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 4px solid;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.mission-item.priority-high { border-left-color: var(--neon-red); }
.mission-item.priority-medium { border-left-color: var(--neon-orange); }

.mission-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.mission-info {
    flex: 1;
}

.mission-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mission-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.mission-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-item.priority-high .mission-status {
    background: rgba(255, 0, 64, 0.2);
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
}

.mission-item.priority-medium .mission-status {
    background: rgba(255, 128, 0, 0.2);
    color: var(--neon-orange);
    border: 1px solid var(--neon-orange);
}

/* Security Logs */
.log-terminal {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    height: 200px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
}

.log-entry {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    align-items: center;
}

.log-time {
    color: var(--text-secondary);
    min-width: 70px;
}

.log-type {
    min-width: 50px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-align: center;
}

.log-entry.success .log-type {
    background: rgba(0, 255, 0, 0.2);
    color: var(--secondary-green);
}

.log-entry.info .log-type {
    background: rgba(0, 255, 255, 0.2);
    color: var(--neon-blue);
}

.log-entry.warning .log-type {
    background: rgba(255, 128, 0, 0.2);
    color: var(--neon-orange);
}

.log-message {
    flex: 1;
    color: var(--text-primary);
}

.log-cursor {
    color: var(--primary-green);
    animation: blink 1s infinite;
}

/* Quick Actions */
.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.action-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.action-icon {
    font-size: 24px;
}

.action-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Panel Footer */
.panel-footer {
    padding: 20px 30px;
    background: var(--panel-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
}

.copyright {
    font-family: 'JetBrains Mono', monospace;
}

.build {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--neon-orange);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .panel-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .status-bar {
        justify-content: center;
    }
    
    .control-grid {
        grid-template-columns: 1fr;
    }
    
    .security-frame {
        padding: 20px;
        margin: 20px;
    }
    
    .auth-buttons {
        flex-direction: column;
    }
    
    .terminal-window {
        width: 95%;
        margin: 10px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* Selection Styling */
::selection {
    background: rgba(0, 255, 0, 0.3);
    color: var(--text-primary);
}   