/*Theme Start*/
:root {
--accent-color: #4285F4;
--accent-background-secondary: #EBF4FF;
--background-primary: #ffffff;
--background-secondary: #f8f9fa;
--text-primary: #222222;
--text-secondary: #ffffff;
}
html[data-theme="dark"] {
--accent-color: #6EA6FF;
--accent-background-secondary: #282C34;
--background-primary: #1e1e1e;
--background-secondary: #282C34;
--text-primary: #e8eaed;
--text-secondary: #ffffff;
}
/*Theme End*/

/* Hide theme switcher - target the parent container */
.logo-section w-theme {
    display: none !important;
}

/* Alternative - hide by making invisible */
w-theme {
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
}