/* ── Playback controls (inside info bar) ──────────────────────────── */
.playback-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.pb-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--route);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.pb-btn:hover { background: var(--surface2); }

.pb-btn-sm {
    width: 24px;
    height: 24px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-btn-sm:hover { background: var(--surface2); }

.seek-bar {
    width: 140px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}
.seek-fill {
    height: 100%;
    background: var(--route);
    border-radius: 3px;
    width: 0%;
    pointer-events: none;
}
.seek-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: var(--route);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 0 4px rgba(0,0,0,.4);
}
.seek-handle:active { cursor: grabbing; }

.pb-time {
    font-size: 11px;
    color: var(--text-dim);
    min-width: 36px;
    text-align: center;
}

.speed-controls {
    display: flex;
    align-items: center;
    gap: 2px;
}
.speed-display {
    font-size: 11px;
    min-width: 28px;
    text-align: center;
    color: var(--text-dim);
}
