#voiceNoteOverlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    top:1px;
    height:60px;
    display: none;
    pointer-events: auto;

    background: rgb(244 246 250);
    backdrop-filter: blur(6px);
}
#voiceNoteOverlay *{padding:0 0 0 0;} /* theme sucks */

#voiceNoteOverlay.open {
    display: flex;
}

.voice-note-inner {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.voice-note-top {
    justify-content: space-between;
    align-items: center;
    flex: 1 1 auto;
}

.voice-note-title {
    font-size: 13px;
    line-height: 1.2;
}

.voice-note-timer {
    font-size: 12px;
    opacity: 0.7;
}

.voice-note-actions {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
}

.voice-note-actions button .fa-microphone{opacity:0.5;}
.voice-note-actions button i:last-child{font-size:20px;}

.voice-note-wave {
    width: 100%;
    height: 32px;

    border-radius: 6px;
    background: #f5f5f5;
}
.voice-note-status {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.6;

    white-space: pre-wrap;
    max-height: 48px;
    overflow: hidden;
}
