.rmp-slim-bar {
    width: 100%;
    max-width: 400px;
    height: 90px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
    color: white;
    font-family: sans-serif;
    gap: 15px;
}

.rmp-main-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1.5;
}

#rmp-cover {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    object-fit: cover;
    background: #333;
}

#rmp-station-name {
    font-size: 14px;
    font-weight: bold;
    display: block;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rmp-live-indicator {
    font-size: 10px;
    color: #00ff41;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot {
    width: 7px;
    height: 7px;
    background: #00ff41;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

.rmp-controls-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

#rmp-play-pause {
    background: #ff4500;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#rmp-play-pause::after { content: '▶'; }
#rmp-play-pause.playing::after { content: 'II'; }

#rmp-volume {
    width: 70px;
    height: 4px;
    accent-color: #ff4500;
    cursor: pointer;
}

.rmp-selector-section {
    display: flex;
    gap: 6px;
    flex: 1;
}

.rmp-station-btn {
    background: #333;
    border: 1px solid #444;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
}

.rmp-station-btn.active { background: #ff4500; border-color: #ff4500; }

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
