/*Record Voice Page*/
.container-columns{
    display: flex;
    flex-direction: column;
    height: 100vh; /* Take full screen height */
    position: relative; /* Important for absolute children */
    box-sizing: border-box;
    padding: 20px;
}

.panels-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 120px;
    padding: 20px;
  }

  
.left-panel {
    flex: 1;
    max-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #18291d8b;
    border-radius: 80px;
    height: 500px;
}


.voice-icon {
    padding-top: 70px;
}

.voice-icon img {
    width: 300px;
    height: 280px;
    margin-bottom: 80px;
    align-items: center;
    mix-blend-mode: darken;
  }

  .record-controls {
    gap:  80px;
    flex: 1;
  }


#start_record,
#stop_record{
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

#start_record > img {
    border-radius: 80px;
    width: 120px;
}

#stop_record > img {
    width: 180px;
}


.recording-right{
    flex: 1;
    max-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    height: 500px;
}

.recording-right > img{
    width: 260px;
    border: 10px solid #0909e1;
    border-radius: 30px;

}



  
  .page-title {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  
  .page-title h2 {
    color: white;
    font-size: 28px;
    margin: 0;
  }


  .voice-page-bottom-button {
    position: absolute;
    right: 20px;
    margin-top: 460px;
  }

  .voice-page-bottom-button img{ 
    width: 80px;
  }

  #voice-page-next_button{ 
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }


  .right-panel svg {
  width: 270px; /* Make it responsive */
  height: auto; /* Maintain aspect ratio */
  margin: 50px -40px 0 -40px;
}


