*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text-secondary);
    display: block;
    min-height: 100vh;
    line-height: 1.55;
    font-size: 0.875rem;
    overflow-x: hidden;
    font-feature-settings: "tnum" 1;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text);
    letter-spacing: var(--letter-tight);
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
}

label {
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    font-size: 0.875rem;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

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

::-webkit-scrollbar-track {
    background: var(--color-border-light);
}
