#stream-audio-toggle-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 50px;
    color: white;
}

#stream-audio-toggle-container::before {
    content: '🔊';
    font-size: 16px;
}

.stream-audio-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    flex-shrink: 0;
}

.stream-audio-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:checked+.slider:before {
    transform: translateX(14px);
}

#esmaka-play-top,
#esmaka-play-bottom {
    position: fixed;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 99999;
    pointer-events: none;
}

#esmaka-play-top {
    top: 0;
    background-color: #ff0000;
}

#esmaka-play-bottom {
    bottom: 0;
    background-color: #ffff00;
}

.esmaka-hide-lines #esmaka-play-top,
.esmaka-hide-lines #esmaka-play-bottom {
    opacity: 0;
    transition: .2s;
}