﻿/* Theme-related styles (e.g., dark mode) */
:root {
    --theme-background-color: #ffffff;
    --theme-color: #000000;
}

[data-theme="dark"] {
    --theme-background-color: #012031;
    --theme-color: #ffffff;
}
