/* Base styles - Global resets and typography */

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

/* Global base styles */
html, body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    background: #f9fafb;
    margin: 0;
    padding: 0;
    height: 100%;
    color: #374151;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

/* Typography */
label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #295e84;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e4a66;
}
