/* Estilos BASE (comuns a ambos) */
.mini-player {
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    background: rgba(66, 34, 25, 0.9);
    border: 1px solid #5c3a2b;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    backdrop-filter: blur(2px);
}

.control-btn, .play-btn {
    background: rgba(212, 163, 115, 0.3);
    border: none;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.now-playing {
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}