/* Marketing Command Center — Dashboard Styles */

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

body {
    font-family: 'Inter', sans-serif;
}

/* Severity colors */
.severity-critical { background: #dc2626; }
.severity-warning { background: #f59e0b; }
.severity-info { background: #3b82f6; }

/* Glow effects */
.glow-green { box-shadow: 0 0 12px rgba(34, 197, 94, 0.3); }
.glow-red { box-shadow: 0 0 12px rgba(239, 68, 68, 0.3); }
.glow-yellow { box-shadow: 0 0 12px rgba(234, 179, 8, 0.3); }
.glow-blue { box-shadow: 0 0 12px rgba(59, 130, 246, 0.3); }

/* Card hover */
.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Status dot pulse */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Sparkline bars */
.sparkline-bar {
    transition: height 0.3s ease;
}

/* Nav active indicator */
.nav-active {
    border-bottom: 2px solid #22c55e;
    color: #22c55e;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}
