/* VoicemailRecorder sheet — bone-cut v0 */
.jny-vmrec {
  padding: 12px;
  background: rgba(26, 31, 58, 0.96);
  border-top: 1px solid rgba(200, 168, 64, 0.4);
  color: #f5efda;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 5;
}
.jny-vmrec__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.jny-vmrec__label {
  font-weight: 600;
  color: #e8d5ad;
}
.jny-vmrec__timer {
  font-variant-numeric: tabular-nums;
  color: #c8a840;
  font-size: 14px;
}
.jny-vmrec__wave {
  width: 100%;
  max-width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.jny-vmrec__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.jny-vmrec__actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 168, 64, 0.5);
  background: transparent;
  color: #e8d5ad;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}
.jny-vmrec__actions .jny-vmrec__stop {
  background: #c8a840;
  color: #1a1f3a;
  border-color: #c8a840;
}
.jny-vmrec__hint {
  color: #ffb;
  font-size: 13px;
}

/* Compact voicemail bubble player (wraps MediaPlayerAudio) */
.jny-vm-bubble {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
.jny-vm-bubble__label {
  font-size: 12px;
  opacity: 0.8;
}

/* Leave voicemail CTA on the call overlay */
.jny-call-vm-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #c8a840;
  color: #1a1f3a;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  min-height: 44px;
}
.jny-call-vm-cta:hover { filter: brightness(1.05); }
