@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --bg-color: #0f172a;
}

html {
    background-color: var(--bg-color);
}

/* Smooth Scrolling */
html.scroll-smooth {
    scroll-behavior: smooth;
}

/* Custom Scrollbar to match Dark Theme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}