.voiceBtn.is-recording {
  background: #ff3860;
  color: #fff;
  border-color: #ff3860;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,56,96,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,56,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,56,96,0); }
}

.voiceActions {
  display: none;
}

.voiceActions.active {
  display: flex;
}

.voiceTimer {
  vertical-align: middle;
}

.level-left {
  align-items: center;
}

.loadingOverlay {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* спиннер (Bulma-style) */
.loader {
  border: 4px solid #dbdbdb;
  border-top: 4px solid #3273dc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}