/* FLOAT BUTTON */
.acc-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c79a00;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    z-index: 9999;
}

acc-float-btn svg {
    width: 24px;
    height: 24px;
}

.acc-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* PANEL */
.acc-panel {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: min-content;
    max-width: calc(100% - 20px);
    max-height: calc(100vh - 32px);
    background: #EAEBED;
    border-radius: 12px 12px 30px 30px;
    box-shadow: 0 9px 46px 8px rgba(0,0,0,.12), 0 24px 38px 3px rgba(0,0,0,.14), 0 11px 15px -7px rgba(0,0,0,.2);
    z-index: 99999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

    .acc-panel.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

/* HEADER */
.acc-header {
    background: #BF9000;
    color: #000;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

/* BODY */
.acc-body {
    box-sizing: border-box;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    /*overflow-y: hidden;*/
    padding: 15px;
    overflow: auto;
    max-height: calc(100vh - 32vh);
    scroll-behavior: smooth;
}

/* SECTIONS */
.acc-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    width: min-content;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 0 20px 4px rgba(105, 114, 125, 0.20) !important;
    margin-bottom: 15px;
}

.acc-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

/* TEXT + STEPS LAYOUT */
.acc-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* STEP BARS */
.acc-steps {
    display: flex;
    gap: 4px;
}

    .acc-steps span {
        width: 16px;
        height: 6px;
        background: #ccc;
        border-radius: 4px;
        cursor: pointer;
    }

        .acc-steps span.active {
            background: #000;
        }
/* OPTIONS */
.acc-option {
    box-sizing: border-box;
    height: 50px;
    min-width: 160px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 12px 12px;
    max-width: calc(50% - 16px);
    border-radius: 16px;
    background-color: #f3f3f4;
    color: #0c0d0e;
    transition: box-shadow .3s ease-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none
}
    /* ACTIVE BUTTON */
    .acc-option.active {
        box-shadow: inset 0 0 0 2px #000;
    }

    .acc-option:hover {
        outline: none;
        box-shadow: inset 0 0 0 2px #0C0D0E;
        transition: box-shadow .3s ease-out;
    }

.acc-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #fff;
    border-radius: 8px;
    flex-shrink: 0;
}

/* active state icon */
.acc-option.active .acc-icon {
    background: #000;
    color: #fff;
}
/* ACCESSIBILITY FEATURES */
/*===============================
    LEFT ALIGN
===============================*/
#mainContentArea.align-left,
#mainContentArea.align-left * {
    text-align: left !important;
}

/* RIGHT ALIGN */
#mainContentArea.align-right,
#mainContentArea.align-right * {
    text-align: right !important;
}
/* ===============================
   DARK CONTRAST
=============================== */
#mainContentArea.contrast-dark,
#mainContentArea.contrast-dark * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* ===============================
   LIGHT CONTRAST
=============================== */
#mainContentArea.contrast-light,
#mainContentArea.contrast-light * {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
}

/* ===============================
   HIGH CONTRAST
=============================== */
#mainContentArea.contrast-high,
#mainContentArea.contrast-high * {
    background-color: #000 !important;
    color: #ffff00 !important; /* yellow */
    border-color: #ffff00 !important;
}

    /* Links in high contrast */
    #mainContentArea.contrast-high a {
        color: #00ffff !important; /* cyan */
        text-decoration: underline !important;
    }

    /* Buttons in contrast */
    #mainContentArea.contrast-dark button,
    #mainContentArea.contrast-light button,
    #mainContentArea.contrast-high button {
        background-color: transparent !important;
        border: 1px solid currentColor !important;
    }

.grayscale {
    filter: grayscale(100%);
}

.hide-images img {
    display: none !important;
}

.highlight-links a {
    outline: 2px solid red;
}

.readable-font {
    font-family: Arial, sans-serif !important;
}

.line-height {
    line-height: 1.8 !important;
}

.text-align {
    text-align: justify !important;
}

.focus-outline *:focus {
    outline: 3px solid orange !important;
}
/* GLOBAL FOCUS (always visible for accessibility) */
:focus {
    outline: 3px solid #ff9800 !important;
    outline-offset: 2px;
}

/* Better only when keyboard is used */
body.keyboard-nav :focus {
    outline: 3px solid #ff9800 !important;
    outline-offset: 2px;
}

/*Big Black Cursor */



.big-black-cursor-enabled,
.big-black-cursor-enabled * {
    cursor: url("../../Images/icons-mouse-black-cursor-50.png") 0 0, auto !important;
}

    /* Hand cursor for clickable elements */
    .big-black-cursor-enabled a,
    .big-black-cursor-enabled button,
    .big-black-cursor-enabled [role="button"],
    .big-black-cursor-enabled input[type="button"],
    .big-black-cursor-enabled input[type="submit"],
    .big-black-cursor-enabled label,
    .big-black-cursor-enabled select,
    .big-black-cursor-enabled textarea,
    .big-black-cursor-enabled .clickable {
        cursor: url("../../Images/icon-hand-cursor-black-50.png") 0 0, pointer !important;
    }


/*Big White Cursor*/

.big-white-cursor-enabled,
.big-white-cursor-enabled * {
    cursor: url("../../Images/icon-white-cursor-60.png") 0 0, auto !important;
}

        /* Hand cursor for clickable elements */
    .big-white-cursor-enabled a,
    .big-white-cursor-enabled button,
    .big-white-cursor-enabled [role="button"],
    .big-white-cursor-enabled input[type="button"],
    .big-white-cursor-enabled input[type="submit"],
    .big-white-cursor-enabled label,
    .big-white-cursor-enabled select,
    .big-white-cursor-enabled textarea,
    .big-white-cursor-enabled .clickable {
        cursor: url("../../Images/white-hand-cursor-60.png") 0 0, pointer !important;
    }

/*Text Magnifier*/

#textMagnifierOverlay {
    position: absolute;
    z-index: 999999;
    pointer-events: none;
    background: #2d2d2d;
    color: white;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 700px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
    font-family: Arial, sans-serif;
}

/*Reading Guide Css*/

#readingGuide {
    position: fixed;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.03s linear;
}

.reading-guide-line {
    width: 85%;
    height: 8px;
    background: #1f6fff;
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(31,111,255,0.7), 0 0 16px rgba(31,111,255,0.4);
}

@media (prefers-reduced-motion: reduce) {

    #readingGuide {
        transition: none;
    }
}




