/**
 * Podcast Backlink Builder — Audio Player Styles
 */

.pbb-audio-player {
    background: linear-gradient(135deg, #1a1c2e 0%, #2d1f3d 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pbb-player-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pbb-player-icon {
    font-size: 24px;
}

.pbb-player-label {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.pbb-player-duration {
    font-size: 12px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
}

.pbb-audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

/* Style the native audio player controls */
.pbb-audio::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}