
.jukebox {
    --gap: .75rem;
    --radius: 12px;
    --accent: gold;
    --bg: #1118275e;
    --fg: #e5e7eb;
    --muted: #94a3b8;
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 12px 14px;
    background: var(--bg);
    color: var(--fg);
    border-radius: var(--radius);
    max-width: 340px;
    font: 14px/1.2 system-ui, sans-serif;
    height: 40px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
}

.jukebox .btn {
    width: 35px;
    /*height: 27px;*/
    border: 0;
    /*border-radius: 50%;*/
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    font-size: 24px;
    display: grid;
    place-items: center;
    transition: transform .1s ease;
    padding: 0;
    margin: 0;
}

.jukebox .btn:active {
    /*font-size: 3px!important;*/
    /*transform: scale(.3);*/
}

.jukebox .time {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
    min-width: 135px;
}

.jukebox .time span {
    font-variant-numeric: tabular-nums;
    color: var(--muted);
}

.jukebox input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #374151;
    outline: none;
}

.jukebox input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.jukebox input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 0;
    cursor: pointer;
}

.jukebox .volume {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 83px;
}