/* Minimal custom CSS needed, mainly handled by Tailwind */

:root {
    --color-brand: #7a9eab;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for clean look but allow scrolling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}
