:root {
    --primary-background-color: #202020;
    --secondary-background-color: #2b2b2b;
    --secondary-border-color: #1d1d1d;
    --tertiary-background-color: #373737;
    --tertiary-border-color: #3f3f3f;
    --text-color: #e1e1e1;
    --accent-color: #00659f;
    --button-background-color: #687172;
    --button-text-color: white;
}

body.light-mode {
    --primary-background-color: #f3f3f3;
    --secondary-background-color: #fbfbfb;
    --secondary-border-color: #e5e5e5;
    --tertiary-background-color: #fefefe;
    --tertiary-border-color: #d3d3d3;
    --text-color: #687172;
    --accent-color: #00659f;
    --button-background-color: #687172;
    --button-text-color: white;
}

* {
    transition: all 0.3s ease;
}

::-webkit-scrollbar {
    width: 1.25vh;
}

::-webkit-scrollbar-track {
    margin: 1vh;
    background: none;
    border-radius: 1vh;
}

::-webkit-scrollbar-thumb {
    background: var(--tertiary-background-color);
    border-radius: 1vh;
    border: 0.2vh solid var(--tertiary-border-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--tertiary-background-color);
    border: 0.2vh solid var(--accent-color);
    cursor: row-resize;
}