/* Custom Base & Ambient Lighting Styles for EMP3 Minimalist Player */

/* Subtle background ambient light blur */
.ambient-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(14, 165, 233, 0.08) 50%, transparent 75%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}

/* iOS smooth tap experience */
* {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Allow text selection in the lyrics textarea */
textarea {
    user-select: text;
}

/* Custom scrollbar for drawer content */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.2);
    border-radius: 9999px;
}

/* Fallback for input range (Scrubber) */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

input[type=range]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
