/* css/player.css */
.mini-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #422219;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    border: 1px solid #d4a373;
    transition: all 0.3s ease;
}

.mini-player:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.control-btn, .play-btn {
    background: rgba(212, 163, 115, 0.2);
    border: 1px solid #d4a373;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.play-btn {
    background: #d4a373;
    width: 36px;
    height: 36px;
}

.control-btn:hover, .play-btn:hover {
    background: #fefae0;
    color: #27140e;
    transform: scale(1.1);
}

.now-playing {
    margin: 0 15px;
    font-size: 14px;
    color: white;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#current-song-name {
    color: #d4a373;
    font-weight: bold;
}

.volume-slider {
    width: 90px;
    cursor: pointer;
    accent-color: #d4a373;
}