/* Force light theme - override dark mode preferences */
:root,
:root[data-theme='dark'],
:root:not([data-theme='light']) {
    --background-color: white;
    --bg-0: #f0f0f0;
    --bg-1: #e7e7e7;
    --bg-2: #fefefe;
    --bg-3: #d8dcdd;
    --hover-color: white;
    --primary-color: #087E96;
    --divider-color: #d7d7d7;
    --text-color: #222226;
    --text-color-high-contrast: #313333;
    --meta-color: #5b5b65;
    --codeblock-bg: #26232e;
    --codeblock-highlight: #383444;
    color-scheme: light;
}

/* Profile picture border */
#image-container-home {
    overflow: visible !important;
}

#banner-home-img {
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--divider-color);
}
