/* Solo2 - Voice Player (WhatsApp-style) */

.voice-player {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    max-width: 280px;
    padding: 6px 10px;
}

.voice-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.voice-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.voice-play-btn:active {
    transform: scale(0.95);
}

.voice-right-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.voice-waveform {
    display: flex;
    align-items: center;
    gap: 1px;
    height: 28px;
    cursor: pointer;
}

.voice-waveform .bar {
    width: 2.5px;
    border-radius: 1px;
    transition: background 0.1s;
    flex-shrink: 0;
}

.voice-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    opacity: 0.6;
    margin-top: 2px;
}

.voice-speed-btn {
    font-size: 9px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: inherit;
    padding: 1px 5px;
    cursor: pointer;
    transition: opacity 0.15s, background 0.15s;
}

.voice-speed-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}
