/* Buttons */
.btn-cyan {
  background-color: #00bcd4;
  color: white;
  border: none;
}
.btn-cyan:hover {
  background-color: #0097a7;
}

/* Recording Indicator */
.recording-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 50%;
  background-color: red;
  animation: blink 1s infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Audio Player */
.custom-audio-player {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  background: #212529;
  padding: 6px;
}

/* Summary text always visible */
#summaryText {
  color: #f8f9fa !important;
}

/* Footer */
.footer {
  background-color: #0F172A; /* Dark Navy */
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

.footer-link {
  color: #22D3EE; /* Neon Cyan */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.text-cyan {
  color: #22D3EE;
}

