
/* ===============================
       Base Theme Variables
    =============================== */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --toggle-bg: #ffffff;
    --toggle-text: #000000;
    --base-font-size: 16px;
}

.accessibility-toolbar body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--base-font-size);
    transition: background-color 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.accessibility-toolbar h1 {
    text-align: center;
    margin-top: 40px;
}

.accessibility-toolbar p {
    text-align: center;
    max-width: 700px;
    margin: 15px auto;
    line-height: 1.6;
}

/* ===============================
       Accessibility Toolbar (Scrolls with page)
    =============================== */

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.accessibility-toolbar {
    width: 100%;
    background-color: var(--bg-color);
    border-bottom: 2px solid #000;
    display: flex;
    justify-content: right;
    align-items: right;
    gap: 10px;
    padding: 10px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index:9990;
}

.accessibility-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 5px;
    cursor: pointer;
    background-color: var(--toggle-bg);
    color: var(--toggle-text);
    transition: all 0.3s ease;
}

    .accessibility-btn:hover {
        transform: scale(1.1);
    }

/* ===============================
       Skip to Main Content (Static)
    =============================== */
.skip-link {
    display: inline-block;
    padding: 8px 14px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .skip-link:hover {
        background-color: #fff;
        color: #000;
        border-color: #000;
    }

/* ===============================
       Dark Mode Styles
    =============================== */
body.dark-mode {
    --bg-color: #000000;
    --text-color: #ffffff;
    --toggle-bg: #000000;
    --toggle-text: #ffffff;
}

    body.dark-mode .accessibility-toolbar {
        border-bottom-color: #ffffff;
    }

/* ===============================
       Focus Accessibility
    =============================== */
.accessibility-btn:focus,
.skip-link:focus {
    outline: 3px solid #00aaff;
    outline-offset: 2px;
}




/*SACHIN START */
.access-drawer {
    /*width: 0px !important;*/
    position: relative;
    display: inline !important;
    /*transform: translateX(-1rem);*/
    z-index: 9999;
}

    .access-drawer:hover .access-tools {
        display: block;
    }

.access-tools {
    position: absolute;
    top: 30px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    width: 345px;
    right: 0;
    text-align: center;
    display: none;
    box-shadow: 1px 0px 6px 0px #e5e5e5;
    z-index: 9999;
}

.nav-link:focus-visible {
    -webkit-box-shadow: 0 0 0 0.25rem;
    box-shadow: 0 0 0 0.25rem #ff0000;
}

.access-tools button {
    background-color: #fff;
    font-size: 16px;
    border: 0;
    box-shadow: 0 0 5px 0 #ccc;
    border-radius: 5px;
    padding: 8px;
}

.access-tools .row {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 25px;
    margin:auto;
}

    .access-tools .row button {
        width: auto;
        height: auto;
        position: relative;
    }

    .access-tools .row .icon-main {
        width: 25px;
        height: 25px;
    }

    .access-tools .row .link-name {
        display: block;
        font-size: 12px;
        font-weight: bold;
    }

.icon-check {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
}

.access-tools.visible {
    display: block; /* Show when the class is added */
}
/*SACHIN END */

.light-btn {
    background-color: #fff !important;
    padding: 4px 10px;
    border: 1px solid #000;
}

.dark-btn {
    background-color: #000;
    padding: 5px 11px;
    color: #fff;
}

.single-newli .brief strong {
    color: white !important;
}

.counter-number {
    background-color: #fff;
    color: #000 !important;
}

.counter-title {
    background-color: #fff;
    color: #000 !important;
}

