/* =========================
   JMF CUSTOM PLAYER
========================= */

.jmf-player {
    background: #1d8a96;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.jmf-player-row1 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.jmf-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity .12s;
}

.jmf-play-btn:hover { opacity: .85; }

.jmf-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 11px;
    border-color: transparent transparent transparent #1d8a96;
    margin-left: 2px;
}

.jmf-pause-icon {
    display: none;
    gap: 3px;
}

.jmf-pause-bar {
    width: 3px;
    height: 12px;
    background: #1d8a96;
    border-radius: 1px;
}

.jmf-player.playing .jmf-play-icon  { display: none; }
.jmf-player.playing .jmf-pause-icon { display: flex; }

.jmf-vol-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.jmf-vol-icon {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    flex-shrink: 0;
}

.jmf-vol-track {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    cursor: pointer;
}

.jmf-vol-fill {
    height: 3px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    width: 80%;
}

.jmf-progress-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jmf-progress-wrap {
    flex: 1;
    cursor: pointer;
}

.jmf-progress-bg {
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    position: relative;
}

.jmf-progress-fill {
    height: 4px;
    background: #fff;
    border-radius: 2px;
    width: 0%;
}

.jmf-progress-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 0%;
    transform: translateX(-50%);
}

.jmf-time {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    flex-shrink: 0;
}