* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body, .sidebar, .main-content, div, nav, aside, main {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--ink);
    height: 100%;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle, rgba(13, 15, 20, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; padding: 0; margin: 0; text-align: left; outline: none; }
input, textarea, select { font: inherit; color: inherit; }
