/* Custom Tailwind Replacement - Production Ready */
/* This file replaces Tailwind CDN with only the classes actually used in the project */

/* Background Colors */
.bg-neutral-950 {
    background-color: #0a0a0a;
}

/* Status indicator background colors */
.bg-emerald-400 {
    background-color: #34d399;
}

.bg-emerald-500 {
    background-color: #10b981;
}

.bg-amber-400 {
    background-color: #fbbf24;
}

.bg-amber-500 {
    background-color: #f59e0b;
}

.bg-red-400 {
    background-color: #f87171;
}

.bg-red-500 {
    background-color: #ef4444;
}

/* Text Colors */
.text-gray-100 {
    color: #f3f4f6;
}

/* Font Family */
.font-inter {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Padding */
.p-4 {
    padding: 1rem;
}

/* Spacing */
.space-y-4 > * + * {
    margin-top: 1rem;
}

/* Overflow */
.overflow-y-auto {
    overflow-y: auto;
}

/* Height */
.h-\[70vh\] {
    height: 70vh;
}

.h-8 {
    height: 2rem;
}

/* Flexbox */
.flex {
    display: flex;
}

/* Gap */
.gap-3 {
    gap: 0.75rem;
}

/* Reset some default margins and paddings for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Basic responsive font sizing */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}