.gf-voice-notes { margin-top: 8px; }
.gf-voice-notes__prompt { margin-bottom: 10px; font-weight: 600; }
.gf-voice-notes__ui { display:flex; align-items:center; gap: 12px; }

.gf-voice-notes__record-btn{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  position: relative;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .08s ease, opacity .15s ease;

  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gf-voice-notes__record-btn::after{
  content:'';
  position:absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fff;
  opacity: .95;
}

.gf-voice-notes__record-btn:active{ transform: scale(.98); }

.gf-voice-notes__timer{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  color:#333;
  min-width: 54px;
}

.gf-voice-notes__status{
  margin-top: 10px;
  font-size: 13px;
  color:#444;
  min-height: 18px;
}

.gf-voice-notes__play{ margin-top: 12px; }