.vo-player-wrapper-bba9 {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    font-family: sans-serif;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.vo-playlist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    order: 1; /* Force top */
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
}
.vo-playlist li {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 14px;
}
.vo-playlist li:last-child {
    border-bottom: none;
}
.vo-playlist li:hover, .vo-playlist li.active {
    background: rgba(0,0,0,0.1);
    font-weight: bold;
}
.vo-player-controls-container {
    order: 2; /* Force bottom */
}
.vo-now-playing {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.vo-progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}
.vo-progress-bar {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.vo-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
}
.vo-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.vo-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #333;
}
.vo-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.vo-btn:hover { color: #555; }
.vo-volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.vo-volume-icon {
    width: 16px;
    height: 16px;
    fill: #666;
}
.vo-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.vo-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
}