#lmp-button {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #ffa200;
    color: white;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 9999;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, opacity 0.3s ease;
}

#lmp-button.hidden {
    opacity: 0;
    pointer-events: none;
}

#lmp-button:hover {
    background: #e09100;
}

#lmp-panel {
    position: fixed;
    top: 30%;
    left: -320px;
    width: 280px;
    background: #111111b7;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    padding: 20px 20px 30px;
    transition: left 0.3s ease;
    z-index: 9998;
    border-radius: 0 10px 10px 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    gap: 20px;
}

#lmp-panel.active {
    left: 0;
}

#lmp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3b3b;
    color: white;
    border: none;
    font-size: 16px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10000;
}

#lmp-close:hover {
    background: #d90000;
}

.lmp-track {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    border: none;
}

.lmp-track strong {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffa200;
}

.lmp-track audio {
    width: 100%;
    outline: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    color-scheme: dark;
}

.lmp-track audio::-webkit-media-controls-panel {
    background-color: #111;
    color: white;
}

.lmp-track audio::-webkit-media-controls-play-button,
.lmp-track audio::-webkit-media-controls-timeline,
.lmp-track audio::-webkit-media-controls-current-time-display,
.lmp-track audio::-webkit-media-controls-time-remaining-display,
.lmp-track audio::-webkit-media-controls-seek-back-button,
.lmp-track audio::-webkit-media-controls-seek-forward-button,
.lmp-track audio::-webkit-media-controls-volume-slider {
    filter: grayscale(0%) brightness(1);
    accent-color: #ffa200;
}

/* Ukryj nagłówek, jeśli nadal w HTML */
#lmp-panel h3 {
    display: none !important;
}