/* SRE Operations Center Stylesheet */

:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-sans: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'Space Grotesk', 'Courier New', Courier, monospace;

    /* Theme colors: Dark default */
    --bg-gradient-start: #060814;
    --bg-gradient-end: #0b112c;
    --sidebar-bg: rgba(6, 8, 20, 0.85);
    --card-bg: rgba(16, 22, 46, 0.45);
    --card-border: rgba(255, 255, 255, 0.07);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Neon Accents */
    --neon-cyan: #00f2fe;
    --neon-cyan-glow: rgba(0, 242, 254, 0.4);
    --neon-green: #05ffa1;
    --neon-green-glow: rgba(5, 255, 161, 0.4);
    --neon-red: #ff3366;
    --neon-red-glow: rgba(255, 51, 102, 0.4);
    --neon-purple: #8a2be2;
    --neon-purple-glow: rgba(138, 43, 226, 0.4);
    
    --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-radius: 16px;
    --transition-speed: 0.3s;
}

/* Light Theme overrides */
body.light-theme {
    --bg-gradient-start: #f1f5f9;
    --bg-gradient-end: #cbd5e1;
    --sidebar-bg: rgba(255, 255, 255, 0.85);
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-border: rgba(0, 0, 0, 0.08);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Solid bright tones */
    --neon-cyan: #0891b2;
    --neon-cyan-glow: rgba(8, 145, 178, 0.2);
    --neon-green: #16a34a;
    --neon-green-glow: rgba(22, 163, 74, 0.2);
    --neon-red: #dc2626;
    --neon-red-glow: rgba(220, 38, 38, 0.2);
    --neon-purple: #7c3aed;
    --neon-purple-glow: rgba(124, 58, 237, 0.2);
    
    --shadow-glow: 0 8px 32px 0 rgba(148, 163, 184, 0.2);
}

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

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background var(--transition-speed), color var(--transition-speed);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* App Container Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 260px;
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: background var(--transition-speed), border var(--transition-speed);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.brand-icon {
    width: 28px;
    height: 28px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 6px var(--neon-cyan-glow));
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.menu-icon {
    width: 20px;
    height: 20px;
}

.menu-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.menu-item.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--neon-purple), rgba(138, 43, 226, 0.4));
    box-shadow: 0 4px 15px var(--neon-purple-glow);
}

.sidebar-footer {
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.theme-toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.theme-toggle-btn {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--text-secondary);
}

.toggle-icon {
    font-size: 0.9rem;
}

.app-uptime {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-uptime .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.app-uptime .value {
    font-size: 0.95rem;
    font-family: var(--font-mono);
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green-glow);
}

/* Main Content Area */
.main-content {
    margin-left: 260px;
    flex-grow: 1;
    padding: 40px;
    width: calc(100% - 260px);
}

/* Header */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 24px;
}

.content-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.content-header .subtitle {
    color: var(--text-secondary);
    margin-top: 4px;
    font-size: 1rem;
}

.status-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.status-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green-glow);
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 255, 161, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(5, 255, 161, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 255, 161, 0); }
}

/* Content Sections */
.content-section {
    animation: fadeIn var(--transition-speed) ease;
}

.content-section.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cards Grid */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

/* Card Styling */
.card {
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-glow);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

body.light-theme .glass-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 40px 0 rgba(148, 163, 184, 0.35);
}

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

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

/* Radial Progress Bar */
.card-body-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.radial-progress-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

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

.radial-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8px;
}

body.light-theme .radial-bg {
    stroke: rgba(0, 0, 0, 0.05);
}

.radial-bar {
    fill: none;
    stroke: var(--neon-cyan);
    stroke-width: 8px;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
    filter: drop-shadow(0 0 6px var(--neon-cyan-glow));
}

.radial-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

/* Linear Progress Bar */
.metric-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

body.light-theme .progress-bar-container {
    background: rgba(0, 0, 0, 0.05);
}

.progress-bar-fill {
    height: 100%;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* Specific bar colors */
.memory-card .progress-bar-fill {
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple-glow);
}

.disk-card .progress-bar-fill {
    background: var(--neon-cyan);
}

.metric-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Network Stats list */
.network-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    height: 100%;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-row .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-row .value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--neon-cyan);
}

/* latency Badge */
.badge {
    background: rgba(5, 255, 161, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(5, 255, 161, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-shadow: 0 0 5px var(--neon-green-glow);
}

.badge.red-badge {
    background: rgba(255, 51, 102, 0.1);
    color: var(--neon-red);
    border: 1px solid rgba(255, 51, 102, 0.2);
    text-shadow: 0 0 5px var(--neon-red-glow);
}

/* Chart Styles */
.margin-top {
    margin-top: 24px;
}

.chart-container {
    position: relative;
    width: 100%;
    margin-top: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 0;
}

body.light-theme .chart-container {
    background: rgba(0, 0, 0, 0.03);
}

.chart-grid {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

body.light-theme .chart-grid {
    stroke: rgba(0, 0, 0, 0.05);
}

.chart-legend {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.cyan-dot { background-color: var(--neon-cyan); }
.green-dot { background-color: var(--neon-green); }

/* Forms & Buttons */
.ping-form {
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    gap: 12px;
}

input[type="text"] {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

body.light-theme input[type="text"] {
    background: rgba(255, 255, 255, 0.8);
}

input[type="text"]:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple-glow);
}

.btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), #a855f7);
    color: white;
    box-shadow: 0 4px 15px var(--neon-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--neon-purple-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.light-theme .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
}

body.light-theme .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Service health stats detail */
.ping-result-container {
    animation: fadeIn 0.4s ease;
}

.ping-status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
}

body.light-theme .ping-status-card {
    background: rgba(0, 0, 0, 0.02);
}

.status-main {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.status-main h4 {
    font-size: 1.2rem;
    font-family: var(--font-mono);
}

.status-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.detail-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-box .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detail-box .value {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

/* Ping Table */
.table-container {
    overflow-x: auto;
    margin-top: 16px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
}

.ping-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.ping-table th, .ping-table td {
    padding: 14px 20px;
}

.ping-table th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: var(--text-secondary);
}

body.light-theme .ping-table th {
    background: rgba(0, 0, 0, 0.04);
}

.ping-table tr {
    border-bottom: 1px solid var(--card-border);
}

.ping-table tr:last-child {
    border-bottom: none;
}

.ping-table td {
    font-family: var(--font-mono);
}

.ping-table td:first-child {
    font-family: var(--font-sans);
}

/* Log stream styling */
.logs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.log-controls {
    display: flex;
    gap: 12px;
}

select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    outline: none;
    cursor: pointer;
}

body.light-theme select {
    background: rgba(255, 255, 255, 0.8);
}

/* Terminal Body */
.log-terminal {
    background: #04050d;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.term-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.term-dot.red { background-color: #ff5f56; }
.term-dot.yellow { background-color: #ffbd2e; }
.term-dot.green { background-color: #27c93f; }

.term-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-mono);
    margin-left: 8px;
}

.terminal-body {
    padding: 20px;
    font-family: 'Space Grotesk', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    height: 400px;
    overflow-y: auto;
    color: #a5b4fc;
}

.log-line {
    margin-bottom: 6px;
    white-space: pre-wrap;
    display: flex;
    gap: 12px;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.log-line.log-info {
    border-color: var(--neon-cyan);
}

.log-line.log-warning {
    border-color: var(--neon-purple);
    color: #fde047;
}

.log-line.log-error {
    border-color: var(--neon-red);
    color: #fda4af;
}

.log-time {
    color: #64748b;
    flex-shrink: 0;
}

.log-tag {
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    width: 70px;
}

.log-msg {
    word-break: break-all;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 70px;
        padding: 16px 12px;
    }
    
    .sidebar-brand span, 
    .menu-item span, 
    .sidebar-footer .theme-toggle-container span, 
    .app-uptime {
        display: none;
    }
    
    .sidebar-brand {
        margin-bottom: 24px;
        justify-content: center;
    }
    
    .menu-item {
        justify-content: center;
        padding: 12px;
    }
    
    .main-content {
        margin-left: 70px;
        width: calc(100% - 70px);
        padding: 24px;
    }
    
    .content-header h1 {
        font-size: 1.8rem;
    }
}

/* Stock Tickers Custom Styles */
.stock-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.stock-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stock-card-meta {
    display: flex;
    flex-direction: column;
}

.stock-ticker {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stock-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stock-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.stock-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.stock-price {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 800;
}

.stock-change {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.stock-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.stock-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

body.light-theme .stock-change.positive {
    color: #047857;
    background: rgba(4, 120, 87, 0.1);
}

body.light-theme .stock-change.negative {
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.1);
}

.stock-sparkline-wrapper {
    width: 100%;
    height: 40px;
    margin-top: 8px;
    opacity: 0.85;
}

.stock-sparkline-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Company Section Custom Styles */
.badge-pending {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.3) !important;
}

.badge-investigating {
    background: rgba(124, 58, 237, 0.1) !important;
    color: #a78bfa !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    text-shadow: 0 0 5px rgba(124, 58, 237, 0.3) !important;
}

.badge-resolved {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.3) !important;
}

.action-btn {
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    transition: all 0.25s ease !important;
}

.action-btn:hover {
    border-color: var(--neon-purple) !important;
    background: rgba(138, 43, 226, 0.08) !important;
    box-shadow: 0 0 10px var(--neon-purple-glow) !important;
    transform: translateX(4px);
}

/* S3 File Upload Styles */
.upload-dropzone {
    border: 2px dashed var(--card-border);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.04);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}

.upload-dropzone p {
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.browse-link {
    color: var(--neon-cyan);
    text-decoration: underline;
    font-weight: 600;
}

.upload-status {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.upload-status.success {
    border-color: var(--neon-green);
    background: rgba(16, 185, 129, 0.04);
}

.upload-status.error {
    border-color: var(--neon-red);
    background: rgba(239, 68, 68, 0.04);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.light-theme .upload-dropzone {
    background: rgba(0, 0, 0, 0.01);
}

body.light-theme .upload-dropzone:hover, body.light-theme .upload-dropzone.dragover {
    background: rgba(0, 243, 255, 0.02);
}

body.light-theme .upload-status {
    background: rgba(0, 0, 0, 0.02);
}

