#mcp-fab-player {
    position: fixed;
    z-index: 99999;
    background: var(--mcp-bg);
    color: var(--mcp-text);
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

#mcp-fab-player.bottom-right { right: 20px; bottom: 20px; }
#mcp-fab-player.bottom-left { left: 20px; bottom: 20px; }

#mcp-fab-player.expanded {
    width: 260px;
    border-radius: 15px;
}

.mcp-collapsed-icon { font-size: 20px; cursor: pointer; display: block; text-align: center; }

/* Seekbar Styling */
#mcp-seekbar-bg { 
    width: 100%; 
    height: 6px; 
    background: #e0e0e0; 
    margin: 10px 0; 
    border-radius: 3px; 
    cursor: pointer;
}
#mcp-seekbar-fill { 
    height: 100%; 
    background: var(--mcp-accent); 
    width: 0%; 
    border-radius: 3px; 
}

/* Playlist Styling */
.mcp-track-item { 
    padding: 5px; 
    cursor: pointer; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    font-size: 12px;
}
.mcp-track-item.active { color: var(--mcp-accent); font-weight: bold; }