.wp-webradio-player-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 300px;
    background: #6B46C1;
    border-radius: 10px;
    z-index: 999999;
    padding: 15px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.wp-webradio-player-container.minimized {
    width: 64px !important;
    padding: 10px !important;
    border-radius: 50% !important;
}

.wp-webradio-player-container.minimized .wp-webradio-status,
.wp-webradio-player-container.minimized .wp-webradio-volume-wrapper,
.wp-webradio-player-container.minimized .wp-webradio-info {
    display: none !important;
}

.wp-webradio-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    transition: background 0.3s ease;
}

.status-dot.online {
    background: #4CAF50;
}

.status-text {
    font-size: 12px;
    opacity: 0.9;
}

.wp-webradio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.wp-webradio-play-button {
    background: #FFD700;
    color: #6B46C1;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.wp-webradio-play-button:hover {
    transform: scale(1.05);
}

.wp-webradio-play-button i {
    font-size: 18px;
    width: auto;
    height: auto;
    line-height: 1;
    display: block;
}

.wp-webradio-volume-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.wp-webradio-volume-control {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

.wp-webradio-volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wp-webradio-volume-control::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wp-webradio-info {
    flex-grow: 1;
    min-width: 0;
}

.wp-webradio-station-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wp-webradio-tagline {
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wp-webradio-minimize {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.2s ease;
    z-index: 2;
}

.wp-webradio-minimize:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.wp-webradio-minimize i {
    font-size: 12px;
    width: auto;
    height: auto;
    line-height: 1;
    display: inline-block !important;
}

.minimized .wp-webradio-minimize {
    top: auto;
    bottom: 64px;
    right: 20px;
    background: #6B46C1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.minimized .wp-webradio-play-button {
    margin: 0 auto !important;
    display: block !important;
}

/* Responsive Design */
@media (max-width: 480px) {
    .wp-webradio-player-container {
        width: calc(100% - 40px);
        max-width: 300px;
        padding: 12px;
    }

    .wp-webradio-controls {
        gap: 10px;
    }

    .wp-webradio-play-button {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .wp-webradio-play-button i {
        font-size: 18px;
    }
}
