:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --font-multiplier: 1; /* Used for scaling */
    --base-font: 'Arial', sans-serif;
}

/* Apply variables to the body */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--base-font);
    font-size: calc(16px * var(--font-multiplier));
    transition: all 0.3s ease;
}

/* High Contrast Mode */
/*body.high-contrast {
    --bg-color: #000000 !important;
    --text-color: #ffff00 !important;
}
*/
body.high-contrast-1 {
    --bg-color: #f2ecb2 !important;
    --text-color: #ffff00 !important;
}

body.high-contrast-2 {
    --bg-color: #daebff !important;
    --text-color: #ffff00 !important;
}

body.high-contrast-3 {
    --bg-color: #ffd1b9 !important;
    --text-color: #ffff00 !important;
}

body.high-contrast-4 {
    --bg-color: #000000!important;
    --text-color: #ffffff !important;
}

body.high-contrast-5 {
    --bg-color: #ffffff !important;
    --text-color: #000000 !important;
}


/* Dyslexia Friendly Font */
body.dyslexia-font {
    --base-font: 'OpenDyslexic', 'Comic Sans MS', sans-serif;
}

/* Toolbar Styling */
.acc-toolbar {
/*    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
*/}

.acc-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0056b3;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.acc-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: #333; /* Keep menu readable even in high contrast */
}

.hidden { display: none; }

.acc-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.acc-option button {
    padding: 5px 10px;
    cursor: pointer;
}

.mysection{  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%); }

