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

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

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

/* Custom Scrollbar for "Premium" feel */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #0f172a;
    /* slate-900 */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #334155;
    /* slate-700 */
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #475569;
    /* slate-600 */
}

/* Checkbox Toggle Animation */
#scheduler-toggle:checked {
    transform: translate(100%, 0.125rem);
}

#scheduler-toggle-bg.active {
    background-color: #4f46e5;
    /* indigo-600 */
}

/* Dynamic Status Colors in Logs */
.log-error {
    color: #f87171;
}

/* red-400 */
.log-success {
    color: #4ade80;
}

/* green-400 */
.log-warning {
    color: #fbbf24;
}

/* amber-400 */
.log-info {
    color: #94a3b8;
}

/* slate-400 */
.log-highlight {
    color: #818cf8;
}

/* indigo-400 */

/* Glassmorphism utility */
.glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}