/* Regional FM Player - Estilos */

.regional-fm-player {
    background: #ffffff;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    height: 70px;
    border-radius: 8px;
    margin: 20px 0;
}

.rfm-now-playing {
    flex: 1;
    min-width: 200px;
    overflow: hidden;
}

.rfm-track-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    color: #333;
}

.rfm-track-artist {
    font-size: 12px;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}

.rfm-controls-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.rfm-play-button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff4757 0%, #c92a2a 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
    flex-shrink: 0;
}

.rfm-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.5);
}

.rfm-play-button:active {
    transform: scale(0.95);
}

.rfm-play-icon,
.rfm-stop-icon {
    flex-shrink: 0;
}

.rfm-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 14px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}

.rfm-stop-icon {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 2px;
}

.rfm-volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.rfm-volume-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.rfm-volume-slider {
    width: 80px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.rfm-volume-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff4757 0%, #c92a2a 100%);
    border-radius: 3px;
    width: 100%;
    transition: width 0.1s ease;
}

.rfm-volume-percentage {
    font-size: 12px;
    font-weight: 600;
    min-width: 35px;
    text-align: right;
    color: #333;
}

/* Responsividade */
@media (max-width: 900px) {
    .rfm-now-playing {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .regional-fm-player {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
        gap: 10px;
    }

    .rfm-now-playing {
        order: 3;
        width: 100%;
        min-width: auto;
    }

    .rfm-controls-bar {
        gap: 10px;
    }

    .rfm-volume-control {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .rfm-volume-slider {
        width: 60px;
    }
}