@font-face {
    font-family: 'Noto Sans';
    src: url('fonts/NotoSans-Medium.ttf') format('truetype'); 
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Naskh Arabic';
    src: url('fonts/NotoNaskhArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --siteos-font-primary: 'Noto Sans', sans-serif;
    --siteos-font-arabic: 'Noto Naskh Arabic', 'Noto Sans Arabic', serif;
    --siteos-font-weight-primary: 500;
    --siteos-bg-solid: #BBBBBB; 
    --siteos-window-bg: #FFFFFF;
    --siteos-window-border: #000000;
    --siteos-text-color: #000000;
    --siteos-menu-bar-bg: #FFFFFF;
    --siteos-menu-bar-border: #000000;
    --siteos-menu-item-hover-bg: #000000;
    --siteos-menu-item-hover-text: #FFFFFF;
    --siteos-title-bar-bg-active: #CCCCCC; 
    --siteos-title-bar-bg-inactive: #FFFFFF;
    --siteos-button-bg: #FFFFFF;
    --siteos-button-border: #000000;
    --siteos-button-active-bg: #000000;
    --siteos-button-active-text: #FFFFFF;

    --siteos-base-font-size: 11pt;
    --siteos-taskbar-base-font-size: 11pt; 
    --siteos-base-taskbar-height: 22px;
    --siteos-base-menu-item-line-height: 21px;
    --siteos-base-icon-size: 16px;
    --siteos-base-menu-bar-icon-margin: 6px;
    --siteos-base-dropdown-icon-margin: 8px;

    --siteos-scrollbar-width: 16px; 

    --vanilla-scrollbar-track-bg: #FFFFFF;
    --vanilla-scrollbar-thumb-bg: #000000;
    --vanilla-scrollbar-button-bg: #E0E0E0;
    --vanilla-scrollbar-button-border: #777777;
    --vanilla-scrollbar-arrow-color: #000000;
}

.siteos-monochrome-body {
    background-color: var(--siteos-bg-solid);
    font-family: var(--siteos-font-primary);
    font-weight: var(--siteos-font-weight-primary);
    color: var(--siteos-text-color);
    margin: 0; padding: 0;
    height: 100vh; width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
    line-height: 1.3;
    font-size: var(--siteos-base-font-size);
}

#siteos-menu-bar {
    background-color: var(--siteos-menu-bar-bg);
    border-bottom: 1px solid var(--siteos-menu-bar-border);
    display: flex;
    align-items: stretch;
    padding: 0 6px; 
    flex-shrink: 0;
    z-index: 10000;
    user-select: none;
    height: var(--siteos-base-taskbar-height);
    font-size: var(--siteos-taskbar-base-font-size);
}

#siteos-menu-bar .siteos-menu-item {
    line-height: var(--siteos-base-menu-item-line-height);
    padding: 0 10px; 
}
#siteos-menu-bar .siteos-menu-bar-icon,
#siteos-menu-bar .siteos-dropdown-menu-item-icon {
    width: var(--siteos-base-icon-size);
    height: var(--siteos-base-icon-size);
}
#siteos-menu-bar .siteos-menu-bar-icon { margin-right: var(--siteos-base-menu-bar-icon-margin); }
#siteos-menu-bar .siteos-dropdown-menu-item-icon { margin-right: var(--siteos-base-dropdown-icon-margin); }
#siteos-menu-bar .siteos-dropdown-menu { top: var(--siteos-base-menu-item-line-height); }


.siteos-menu-item {
    cursor: default;
    position: relative;
    white-space: nowrap;
    display: flex; 
    align-items: center;
    margin-right: 5px; 
}
.siteos-menu-item:last-child {
    margin-right: 0;
}
.siteos-menu-item.active-menu {
    background-color: var(--siteos-menu-item-hover-bg);
    color: var(--siteos-menu-item-hover-text);
}
.siteos-menu-bar-icon {
    image-rendering: pixelated; 
    vertical-align: middle; 
    flex-shrink: 0;
}
.siteos-99names {
    padding-left: 10px; 
    padding-right: 10px;
    font-size: 0.9em; 
    cursor: default;
    display: flex; 
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1; 
    justify-content: flex-end; 
    min-width: 150px; 
}
.siteos-99names span { 
    margin-right: 0.5em;
}
.siteos-99names .name-arabic {
    font-family: var(--siteos-font-arabic);
    font-size: 1.1em; 
    margin: 0 0.4em; 
}
.siteos-99names .name-translit {
    margin-right: 0.4em; 
}

.siteos-dropdown-menu {
    display: none;
    position: absolute;
    left: -1px; 
    background-color: var(--siteos-menu-bar-bg);
    border: 1px solid var(--siteos-menu-bar-border);
    box-shadow: 2px 2px 0px rgba(0,0,0,0.25);
    list-style: none;
    margin: 0;
    padding: 3px 0; 
    min-width: 220px; 
    z-index: 10001;
    font-size: 1rem;
}
.siteos-dropdown-menu li {
    padding: 4px 12px; 
    white-space: nowrap;
    color: var(--siteos-text-color); 
    display: flex; 
    align-items: center; 
    position: relative; 
}
.siteos-dropdown-menu li:hover {
    background-color: var(--siteos-menu-item-hover-bg);
    color: var(--siteos-menu-item-hover-text);
}
.siteos-dropdown-menu li:hover a,
.siteos-dropdown-menu li.submenu-active { 
    color: var(--siteos-menu-item-hover-text);
    background-color: var(--siteos-menu-item-hover-bg);
}
.siteos-dropdown-menu li.submenu-active > .siteos-submenu-arrow { 
    color: var(--siteos-menu-item-hover-text);
}

.siteos-dropdown-menu li a { 
    text-decoration: none;
    color: var(--siteos-text-color);
    display: flex; 
    align-items: center;
    width: 100%; 
}
.siteos-dropdown-menu-item-icon { 
    image-rendering: pixelated;
    flex-shrink: 0; 
}

.siteos-submenu-parent {
    position: relative; 
}
.siteos-submenu-arrow {
    margin-left: auto; 
    padding-left: 10px;
    font-size: 0.8em;
}
.siteos-submenu-parent:hover > .siteos-submenu, 
.siteos-submenu-parent.submenu-active > .siteos-submenu { 
    display: block;
}
.siteos-submenu {
    display: none;
    position: absolute;
    left: 100%; 
    top: 0;
    margin-top: 0;
    background-color: var(--siteos-menu-bar-bg); 
    border: 1px solid var(--siteos-menu-bar-border); 
    box-shadow: 2px 2px 0px rgba(0,0,0,0.25); 
    list-style: none; 
    padding: 3px 0; 
    min-width: 180px; 
    z-index: 10002;
}
.siteos-color-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid var(--siteos-window-border);
    margin-right: 8px;
    vertical-align: middle; 
    flex-shrink: 0;
}

#siteos-desktop {
    flex-grow: 1;
    position: relative;
    overflow: auto; 
    padding: 5px; 
    display: block;
    background-color: var(--siteos-bg-solid); 
    transition: background-color 0.3s ease; 
}

#siteos-desktop-text-container { 
    font-weight: bold;
    text-align: center;
    color: var(--siteos-text-color); 
    padding: 20px;
    max-width: 80%;
    margin: 20px auto; 
    pointer-events: none; 
    user-select: none; 
    z-index: 0; 
    font-size: 1.8em;
}

.siteos-window {
    position: absolute; 
    background-color: var(--siteos-window-bg);
    border: 1px solid var(--siteos-window-border);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2); 
    display: flex;
    flex-direction: column;
    min-width: 280px; 
    min-height: 180px; 
    user-select: text; 
    max-width: calc(100vw - 10px); 
    max-height: calc(100vh - var(--siteos-base-taskbar-height) - 10px);
    z-index: 1; 
}

.siteos-window.active-window .siteos-window-title-bar {
    background-color: var(--siteos-title-bar-bg-active);
}

.siteos-window-title-bar {
    background-color: var(--siteos-title-bar-bg-inactive);
    border-bottom: 1px solid var(--siteos-window-border);
    height: 22px; 
    padding: 0 5px 0 25px;
    line-height: 21px; 
    cursor: grab;
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    user-select: none; 
    font-size: var(--siteos-taskbar-base-font-size);
}
.siteos-window-title-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--siteos-window-border);
    transform: translateY(-50%);
    box-shadow: inset 1px 1px 0 #fff;
}

.siteos-window-title-bar:active { cursor: grabbing; }
.siteos-window-title {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    flex-grow: 1;
    font-weight: var(--siteos-font-weight-primary); 
    font-size: 1em; 
    color: var(--siteos-text-color); 
}
.siteos-window-close-box {
    position: absolute;
    left: 6px; top: 4px; 
    width: 12px; height: 12px; 
    border: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg);
    cursor: default;
    box-sizing: border-box;
}
.siteos-window-close-box:hover { background-color: #E0E0E0; }
.siteos-window-close-box:active { background-color: #000; }

.siteos-window-content {
    flex-grow: 1;
    padding: 0; 
    overflow: auto; 
    position: relative;
    display: flex; 
    flex-direction: column;
    font-size: 1em; 
}
.siteos-window-content iframe {
    width: 100%; height: 100%;
    border: none; display: block;
    background-color: var(--siteos-window-bg); 
}

.scrollable-panel-content-siteos {
    flex-grow: 1; 
    overflow-y: auto;
    padding: 10px;
    min-height: 0; 
    font-size: 0.95em; 
    line-height: 1.5;
}
.scrollable-panel-content-siteos p:first-child { margin-top: 0; }
.scrollable-panel-content-siteos div { white-space: pre-wrap; word-wrap: break-word; } 
.scrollable-panel-content-siteos h1 { 
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
}

.quran-app-content-siteos { 
    padding: 10px; 
    line-height: 1.4; 
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    user-select: text; 
    height: 100%; 
    box-sizing: border-box;
}
.quran-controls-siteos {
    padding-bottom: 10px; margin-bottom: 10px;
    border-bottom: 1px solid var(--siteos-window-border);
    display: flex; align-items: stretch; gap: 10px;
    flex-shrink: 0; 
}

.quran-controls-surah-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-basis: 50%;
    flex-grow: 1;
    min-width: 250px;
}
.siteos-custom-select-container {
    position: relative;
    display: inline-block;
    flex-grow: 1;
}
.siteos-custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    border: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg);
    cursor: default;
    border-radius: 0;
    line-height: 1.2;
    height: 100%;
    box-sizing: border-box;
}
.siteos-custom-select-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.siteos-custom-select-arrow {
    margin-left: 8px;
    font-size: 0.8em; 
    transform: translateY(1px); 
}
.siteos-custom-select-options {
    position: absolute;
    top: calc(100% + 1px); 
    left: -1px; 
    right: -1px; 
    background-color: var(--siteos-window-bg);
    border: 1px solid var(--siteos-window-border);
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
    max-height: calc(10 * (1em * 1.3 + 10px)); 
    display: none;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.25);
    overflow-y: auto; 
}
.siteos-custom-select-options.open { display: block; }
.siteos-custom-select-options li {
    padding: 5px 10px;
    cursor: default;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    color: var(--siteos-text-color);
}
.siteos-custom-select-options li:hover,
.siteos-custom-select-options li.selected-option {
    background-color: var(--siteos-menu-item-hover-bg);
    color: var(--siteos-menu-item-hover-text);
}

.quran-controls-audio-player {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-basis: 50%;
    flex-grow: 1;
    border: 1px solid var(--siteos-window-border);
    padding: 0 8px;
    background-color: var(--siteos-window-bg);
}
.siteos-audio-btn {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0 4px;
}
#quran-audio-scrubber {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.9;
    transition: opacity .2s;
    cursor: pointer;
}
#quran-audio-scrubber::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #000;
    border: 1px solid #fff;
    cursor: pointer;
}
#quran-audio-scrubber::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #000;
    border: 1px solid #fff;
    cursor: pointer;
}
.siteos-audio-time {
    font-size: 0.8em;
    min-width: 70px;
    text-align: center;
}
.siteos-audio-info-link {
    text-decoration: none;
    color: var(--siteos-text-color);
}
.siteos-info-icon {
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
}


.quran-display-layout-siteos {
    display: flex; flex-direction: row; gap: 10px;
    flex-grow: 1; overflow: hidden; min-height: 0;
}
.quran-panel-siteos { 
    flex: 1; border: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg);
    display: flex; flex-direction: column;
    overflow: hidden; min-height: 0;
}
.quran-panel-title-siteos { 
    padding: 4px 8px;
    border-bottom: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg);
    font-weight: var(--siteos-font-weight-primary);
    flex-shrink: 0; text-align: center; user-select: none;
}
.quran-panel-content-siteos {
    flex-grow: 1;
    overflow-y: auto; 
    padding: 10px; 
    min-height: 0; 
}
.quran-panel-content-siteos p:first-child { margin-top: 0; }

.quran-verse-card-siteos { 
    border: 1px solid var(--siteos-window-bg);
    padding: 6px 8px; margin-bottom: 3px;
    cursor: default; background-color: var(--siteos-window-bg);
    position: relative;
    padding-right: 30px; /* Space for the icon */
}
.quran-verse-card-siteos.active-verse { background-color: #000; color: #FFF; }
.quran-verse-card-siteos.active-verse .qvc-ref-siteos { color: #FFF; } 
.quran-verse-card-siteos.active-verse .qvc-share-icon-siteos { color: #FFF; } 

.qvc-ref-siteos { font-size: 0.9em; color: #333; margin-bottom: 4px; } 
.qvc-text-siteos { 
    font-family: var(--siteos-font-primary); 
    line-height: 1.5; 
    direction: ltr; 
    text-align: left; 
    white-space: pre-wrap; word-wrap: break-word;
}
.qvc-share-icon-siteos {
    position: absolute;
    bottom: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.quran-verse-card-siteos:hover .qvc-share-icon-siteos {
    opacity: 1;
}

.quran-panel-content-siteos h1, .quran-panel-content-siteos h2, .quran-panel-content-siteos h3 { 
    font-weight: bold; margin: 8px 0 4px 0;
}
.quran-panel-content-siteos p { margin: 5px 0; }

.siteos-loading-indicator {
    text-align: center; padding: 15px;
    font-style: normal; color: #555;
}
.quran-app-footer-strip {
    height: 14px; 
    line-height: 14px;
    border-top: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg); 
    padding: 0 5px;
    font-size: 0.85em; 
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    user-select: none;
}
.quran-app-footer-strip p { margin: 0; padding: 0; line-height: 14px; }

.sealed-nectar-app-content-siteos {
    padding: 10px; 
    line-height: 1.4;
    display: flex; 
    flex-direction: column;
    overflow: hidden; 
    height: 100%; 
    box-sizing: border-box;
}
.sealed-nectar-panel-siteos.sealed-nectar-single-column-panel-siteos { 
    flex: 1; 
    border: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg);
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    min-height: 0; 
}
.sealed-nectar-panel-title-siteos { 
    padding: 4px 8px;
    border-bottom: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg); 
    font-weight: var(--siteos-font-weight-primary);
    flex-shrink: 0; 
    text-align: center;
    user-select: none;
}
.sealed-nectar-app-footer-strip {
    height: 14px;  
    line-height: 14px;
    border-top: 1px solid var(--siteos-window-border);
    background-color: var(--siteos-window-bg); 
    padding: 0 5px;
    font-size: 0.85em; 
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    user-select: none;
}

.siteos-share-popup {
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.siteos-share-popup-content {
    background-color: var(--siteos-window-bg);
    padding: 20px;
    border: 1px solid var(--siteos-window-border);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}
.siteos-share-popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
.siteos-share-popup p { margin-top: 0; }
#siteos-share-url-input {
    width: calc(100% - 16px);
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
#siteos-copy-share-url-btn {
    padding: 8px 15px;
    cursor: pointer;
}

.siteos-error-text {
    color: #770000;
    padding: 10px;
    text-align: center;
}

/* Responsive styles for smaller screens */
@media (max-width: 850px) {
    #siteos-menu-bar {
        height: auto;
        flex-wrap: wrap;
    }
    #siteos-99names-display {
        display: none;
    }
    #siteos-desktop {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .siteos-window {
        position: relative !important; /* Override absolute positioning */
        width: 100% !important; /* Full width */
        max-width: 100% !important;
        height: auto !important; /* Height based on content */
        left: auto !important;
        top: auto !important;
        margin-bottom: 10px;
        box-shadow: none;
        min-height: 400px; /* Ensure a decent minimum height */
    }
    .quran-display-layout-siteos {
        flex-direction: column; /* Stack panels vertically */
    }
    #siteos-desktop-text-container {
        display: none; /* Hide desktop text on small screens */
    }
    .quran-controls-siteos {
        flex-direction: column;
        align-items: stretch;
    }
}


.quran-panel-content-siteos::-webkit-scrollbar,
.siteos-custom-select-options::-webkit-scrollbar,
.siteos-window-content::-webkit-scrollbar, 
.scrollable-panel-content-siteos::-webkit-scrollbar 
{
    width: var(--siteos-scrollbar-width);
    height: var(--siteos-scrollbar-width);
    background-color: var(--vanilla-scrollbar-track-bg);
}
.quran-panel-content-siteos::-webkit-scrollbar-track,
.siteos-custom-select-options::-webkit-scrollbar-track,
.siteos-window-content::-webkit-scrollbar-track,
.scrollable-panel-content-siteos::-webkit-scrollbar-track
{
    background-color: var(--vanilla-scrollbar-track-bg);
    border: 1px solid #B0B0B0; 
}
.quran-panel-content-siteos::-webkit-scrollbar-thumb,
.siteos-custom-select-options::-webkit-scrollbar-thumb,
.siteos-window-content::-webkit-scrollbar-thumb,
.scrollable-panel-content-siteos::-webkit-scrollbar-thumb
{
    background-color: var(--vanilla-scrollbar-thumb-bg);
    border: 1px solid var(--vanilla-scrollbar-thumb-bg); 
}
.quran-panel-content-siteos::-webkit-scrollbar-thumb:hover,
.siteos-custom-select-options::-webkit-scrollbar-thumb:hover,
.siteos-window-content::-webkit-scrollbar-thumb:hover,
.scrollable-panel-content-siteos::-webkit-scrollbar-thumb:hover
{
    background-color: #333333; 
}
.quran-panel-content-siteos::-webkit-scrollbar-button,
.siteos-custom-select-options::-webkit-scrollbar-button,
.siteos-window-content::-webkit-scrollbar-button,
.scrollable-panel-content-siteos::-webkit-scrollbar-button
{
    display: block;
    height: calc(var(--siteos-scrollbar-width) - 2px); 
    width: calc(var(--siteos-scrollbar-width) - 2px);
    background-color: var(--vanilla-scrollbar-button-bg);
    border: 1px solid var(--vanilla-scrollbar-button-border);
    background-repeat: no-repeat;
    background-position: center center;
}
.quran-panel-content-siteos::-webkit-scrollbar-button:active,
.siteos-custom-select-options::-webkit-scrollbar-button:active,
.siteos-window-content::-webkit-scrollbar-button:active,
.scrollable-panel-content-siteos::-webkit-scrollbar-button:active
{
    background-color: #ADADAD; 
}
.quran-panel-content-siteos::-webkit-scrollbar-button:single-button:vertical:decrement,
.siteos-custom-select-options::-webkit-scrollbar-button:single-button:vertical:decrement,
.siteos-window-content::-webkit-scrollbar-button:single-button:vertical:decrement,
.scrollable-panel-content-siteos::-webkit-scrollbar-button:single-button:vertical:decrement 
{ 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'%3E%3Cpolygon points='4.5,0 0,5 9,5' style='fill:black;'/%3E%3C/svg%3E"); 
}
.quran-panel-content-siteos::-webkit-scrollbar-button:single-button:vertical:increment,
.siteos-custom-select-options::-webkit-scrollbar-button:single-button:vertical:increment,
.siteos-window-content::-webkit-scrollbar-button:single-button:vertical:increment,
.scrollable-panel-content-siteos::-webkit-scrollbar-button:single-button:vertical:increment
{ 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5'%3E%3Cpolygon points='0,0 9,0 4.5,5' style='fill:black;'/%3E%3C/svg%3E"); 
}
.quran-panel-content-siteos::-webkit-scrollbar-button:single-button:horizontal:decrement,
.siteos-custom-select-options::-webkit-scrollbar-button:single-button:horizontal:decrement,
.siteos-window-content::-webkit-scrollbar-button:single-button:horizontal:decrement,
.scrollable-panel-content-siteos::-webkit-scrollbar-button:single-button:horizontal:decrement
{ 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='9' viewBox='0 0 5 9'%3E%3Cpolygon points='5,4.5 0,0 0,9' style='fill:black;'/%3E%3C/svg%3E"); 
}
.quran-panel-content-siteos::-webkit-scrollbar-button:single-button:horizontal:increment,
.siteos-custom-select-options::-webkit-scrollbar-button:single-button:horizontal:increment,
.siteos-window-content::-webkit-scrollbar-button:single-button:horizontal:increment,
.scrollable-panel-content-siteos::-webkit-scrollbar-button:single-button:horizontal:increment
{ 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='9' viewBox='0 0 5 9'%3E%3Cpolygon points='0,4.5 5,0 5,9' style='fill:black;'/%3E%3C/svg%3E"); 
}

.quran-panel-content-siteos::-webkit-scrollbar-corner,
.siteos-custom-select-options::-webkit-scrollbar-corner,
.siteos-window-content::-webkit-scrollbar-corner,
.scrollable-panel-content-siteos::-webkit-scrollbar-corner
{
    background-color: var(--vanilla-scrollbar-track-bg);
}
.siteos-window-content iframe::-webkit-scrollbar { all: initial !important; }

.siteos-submenu {
  top: 0;
  margin-top: 0;
}
