
    .rvp-player {
        background: black;
        color: white;
        font-family: sans-serif;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    }
    .rvp-song-details {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
    }
    .rvp-album-art {
        width: 100px;
        height: 100px;
        background: #2c2c2c;
        object-fit: cover;
        flex-shrink: 0;
    }
    .rvp-song-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .rvp-song-title {
        color: #aaa;
        font-size: 20px;
        margin: 0;
    }
    .rvp-artist-name {
        font-size: 16px;
        color: #ccc;
        margin: 0;
    }
    .rvp-vote-buttons {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-shrink: 0;
    }
    .rvp-vote-button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    .rvp-vote-button img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }
    .rvp-vote-button:hover img {
        opacity: 0.7;
    }
    .rvp-vote-button.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    .rvp-play-button {
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .rvp-play-button img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .rvp-play-button.play img:not(:hover) {
        content: url('https://dev.overdrivelive.ru/wp-content/plugins/radio-voting-plugin/play.svg');
    }
    .rvp-play-button.play img:hover {
        content: url('https://dev.overdrivelive.ru/wp-content/plugins/radio-voting-plugin/play_hover.svg');
    }
    .rvp-play-button.paused img:not(:hover) {
        content: url('https://dev.overdrivelive.ru/wp-content/plugins/radio-voting-plugin/stop.svg');
    }
    .rvp-play-button.paused img:hover {
        content: url('https://dev.overdrivelive.ru/wp-content/plugins/radio-voting-plugin/stop_hover.svg');
    }
    .rvp-visualizer {
        display: flex;
        gap: 4px;
        align-items: flex-end;
        height: 50px;
        flex-shrink: 0;
    }
    .rvp-bar {
        width: 6px;
        background: red;
        height: 10px;
        transition: height 0.2s ease-in-out;
        align-self: flex-end;
    }
    .rvp-slider-container {
        position: relative;
        width: 150px;
        height: 6px;
        flex-shrink: 0;
    }
    .rvp-volume-slider {
        width: 150px;
        appearance: none;
        height: 6px;
        background: #2c2c2c;
        border-radius: 3px;
        outline: none;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        z-index: 1;
    }
    .rvp-volume-slider::-webkit-slider-runnable-track {
        height: 6px;
        background: transparent;
        border-radius: 3px;
    }
    .rvp-volume-slider::-moz-range-track {
        height: 6px;
        background: #2c2c2c;
        border-radius: 3px;
    }
    .rvp-volume-slider::-webkit-slider-thumb {
        appearance: none;
        width: 16px;
        height: 16px;
        background: white;
        border-radius: 50%;
        cursor: pointer;
        margin-top: -5px;
        position: relative;
        z-index: 3;
    }
    .rvp-volume-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        background: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }
    .rvp-slider-track {
        position: absolute;
        top: 0;
        left: 0;
        height: 6px;
        border-radius: 3px;
        background: red;
        z-index: 2;
        width: 0;
    }
    .rvp-top-songs {
        max-width: 600px;
        margin: 20px auto;
        color: #333;
    }
    .rvp-top-songs h2 {
        color: #333;
    }
    .rvp-song-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        padding: 10px;
        background: #f9f9f9;
        border-radius: 5px;
    }
    .rvp-album-art {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }
    .rvp-song-info {
        display: flex;
        flex-direction: column;
    }
    .rvp-song-title {
        font-size: 16px;
        font-weight: bold;
    }
    .rvp-artist-name {
        font-size: 14px;
        color: #666;
    }
    .rvp-vote-count {
        font-size: 12px;
        color: #999;
    }
    @media (max-width: 600px) {
        .rvp-player {
            flex-wrap: wrap;
            gap: 10px;
            padding: 10px;
        }
        .rvp-album-art {
            width: 60px;
            height: 60px;
        }
    }
    