/* base.css */
:root {
    --bg: #0f0f0f;
    --bg2: #181818;
    --text: #eaeaea;
    --border: #333;
    --accent: #d98e32;
    --success: #28a745;
    --danger: #c62828;
}

body {
    background: var(--bg);
    color: var(--text);
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
}

/* =======================================
   GLOBAL SCROLLBAR STYLE (dark theme)
======================================= */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
    border: 2px solid #0f0f0f;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

::-webkit-scrollbar-corner {
    background: #0f0f0f;
}
/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #333 #0f0f0f;
}
