body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
}

.heading {
  font-size: 2.5em;
  color: #a11dff;
  margin-bottom: 20px;
}

/* .microphone-wrapper {
  position: relative;
  width: 100px; 
  height: 100px; 
  margin: 0 auto;
}

.microphone {
  width: 100px; 
  height: 100px; 
  background-color: #6a41fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff; 
  background-color: #6a41fb; 
  border-radius: 50%;
}

#visualizer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 180px; 
  height: 180px; 

} */

  
.mic-shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -2;
  box-shadow: 0 0 7px 15px #2d0b54;
  animation: shadow-rotate 1.5s linear infinite; /* Apply animation for rotation */
}

@keyframes shadow-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes circle-size {
  from {
    width: 100px; /* Adjusted for better visibility */
    height: 100px; /* Adjusted for better visibility */
  }
  to {
    width: 110px; /* Adjusted for better visibility */
    height: 110px; /* Adjusted for better visibility */
  }
}

.microphone-icon {
  font-size: 40px;
  color: white;
  z-index: 11; /* Ensure the icon is on top of everything */
}

.text-display {
  font-size: 20px;
  color: #f7efef;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.waveform {
  width: 100%;
  height: 100px;
  background-color: #1e1e1e;
}

#con {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*margin-top: 1%;*/
}

.insurance-lead {
  background-color: transparent !important;

  border-radius: 10px;

  box-sizing: border-box;
}

.insurance-lead audio {
  width: 250px;
  border: 2px solid #6a41fb !important;
  height: 35px;
  border-radius: 20px;
}

.nav-tabs {
  display: flex;
  justify-content: center;
  /* border-top: 1px solid white; */
  margin: 20px auto 0;
  padding: 0;
  width: fit-content;
}

.nav-item {
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  position: relative;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  /*width: 100%;*/
  width: 0%;

  left: 0;
}

.nav-link:hover {
  color: #a11dff;
}

.nav-link.active {
  color: #ff6600;
}

body {
  background-color: black;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .tab-pane.active {
  display: block;
}

@media (min-width: 992px) {
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.nav-link.disabled {
  color: white;
  opacity: 0.3;
}

.microphone.non-clickable {
  pointer-events: none;
  opacity: 1;
}

#transcript_1.disabled {
  opacity: 0;
  
}

.nowrap {
  white-space: nowrap;
}

#transcript-container {
  display: flex;
  justify-content: center;
}

.text-display_1 {
  display: none;
}

.text-display_1.active {
  display: inline;
}


.microphone-wrapper {
  position: relative;
  display: inline-block;
  width: 120px; 
  height: 120px; 
}

.microphone {
  width: 100px; 
  height: 100px; 
  background-color: #6a41fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 10; 
}

.microphone.recording::before,
.microphone.recording::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -1; 
  box-shadow: 0 0 10px 15px #2d0b54;
}

.microphone.recording::before {
  width: 130px; 
  height: 130px; 
  background-color: #0FD194;
}

.microphone.recording::after {
  width: 120px; 
  height: 120px; 
  background-color: #6a41fb;
  animation: circle-size 0.8s linear infinite alternate;
}
#transcript-container {
  max-height: 150px;
  overflow-y: auto;
  margin-top: 10px;
  padding: 10px;
  background-color: transparent; /* Adjust as needed */
  
}
