﻿.pm-audio-panel {
    position: fixed !important;
    top: 95px !important;
    right: 20px !important;
    z-index: 2147483647 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: system-ui, sans-serif;
}

.pm-audio-main-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
    transition: .2s;
}

.pm-audio-main-btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.pm-audio-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 260px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(15,23,42,.96);
    color: white;
    box-shadow: 0 20px 45px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.08);
    display: none;
}

.pm-audio-panel.open .pm-audio-menu {
    display: block;
}

.pm-audio-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pm-audio-action {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: white;
    font-weight: 700;
}

.pm-audio-action:hover {
    background: rgba(255,255,255,.14);
}

.pm-audio-range {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: #cbd5e1;
}

.pm-audio-range input {
    width: 100%;
    margin-top: 6px;
}