#teb-sidebar-toggle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

/* Hover effect */
#teb-sidebar-toggle:hover,
.teb-hover-effect {
    background-color: #EEEE00 !important;
    border: 1px solid black;
    box-shadow: 0 0 2px 1px black;
}

/* Default arrow styling */
.teb-arrow {
    color: #EEEE00;
    font-size: 18px;
    font-weight: bold;
    transition: color 250ms ease, transform 250ms ease;
    user-select: none; /* Prevents text selection */
    pointer-events: none; /* Prevents accidental interactions */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px; /* Ensures proper spacing */
    height: 18px;
}

/* Position adjustments */
.teb-arrow.right { 
    transform: translateX(1px); /* Move right arrow 1px right */
}

.teb-arrow.left { 
    transform: translate(-1px, -1px); /* Move left arrow 1px left and 1px up */
}

/* Hovered arrow color */
#teb-sidebar-toggle:hover .teb-arrow,
.teb-hover-effect .teb-arrow {
    color: black;
}

/* Prevent horizontal scrollbar */
/*
html, body {
    overflow-x: hidden;
}
*/
