 .icon-container {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-evenly;
   top: 100px;
   z-index: 9999999999999999;
   position: fixed;
   left: 50%;
   transform: translateX(-50%);
   
    padding-top: 10px;
    padding-bottom: 10px;
   padding-left: 30px;
   padding-right: 30px;
    width: 100%;
 }

.icon-container img {
width: 16px;
height: 16px;
cursor: pointer;
z-index: 99999;
}

.icon-container i {
font-size: 16px;
cursor: pointer;
z-index: 9999;
}

 .icon {
   margin: 5px;
   /* Add spacing between icons */
 }

 
#fullscreen-toggle {
  position: fixed;
  top: 20px;
  left: 36px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 400;
}

 

 #stop-recording {
   display: none;
 }


.fullscreen-mode .dropdown {
  z-index: 999;
}

.fullscreen-mode .dropdown-menu {
  position: fixed;
  top: auto;
  bottom: 10px; 
}



 .toggle-on {
   color: green;
   /* Change to your desired color */
 }

 .toggle-off {
   color: red;
   /* Change to your desired color */
 }



#uploadaudioIcon {
  color: white;
  position: fixed;
  top: 60px;
  right: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 999999;
}


 #fileIcon {
   color: white;
   position: absolute;
   margin-bottom: 25vh;
   left: 23vw;
   transform: translateX(-50%);
   width: 35px;
   height: 35px;
   cursor: pointer;
   z-index: 1;
 }

 #scanIcon {
   color: white;
   position: absolute;
   margin-bottom: 25vh;
   left: 35vw;
   transform: translateX(-50%);
   width: 35px;
   height: 35px;
   cursor: pointer;
   z-index: 1;
 }

 #video {
   color: white;
   position: absolute;
   margin-bottom: 25vh;
   left: 45vw;
   transform: translateX(-50%);
   cursor: pointer;
   z-index: 1;
 }

 #capture {
   color: white;
   height: 40px;
   position: absolute;
   margin-bottom: 25vh;
   left: 55vw;
   transform: translateX(-50%);
   cursor: pointer;
   z-index: 1;
   padding-left: 20px;
   padding-right: 20px;
   border-radius: 5px;
   font-size: 16px;
 }

 #canvas {
   color: white;
   position: absolute;
   margin-bottom: 25vh;
   left: 65vw;
   transform: translateX(-50%);
   cursor: pointer;
   z-index: 1;
 }

.textarea-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.textarea-container textarea {
    padding-right: 40px; /* Make room for the mic icon */
}

#inputTools {
position: fixed;
bottom: 100px;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
width: 90%;
left: 50%;
transform: translateX(-50%);
height: auto;
background: linear-gradient(45deg, #8d0281, #000000, #673AB7);
padding-top: 10px;
padding-bottom: 10px;
   gap: 20px;
   box-shadow: 0px 0px 10px rgb(252, 252, 252, 0.5);
   border: 2px solid rgb(255, 255, 255, 0.5);
   border-radius: 10px;
}

#inputTools i {
font-size: 20px;
cursor: pointer;
}


#textarea-mic {
    color: red;
    transition: color 0.3s ease;
}

#textarea-mic:hover {
    opacity: 0.8;
}

#textarea-mic.recording {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}


.edit-audio-wave {
   position: fixed;
   bottom: 150px;
    width: 50%;
    height: 100px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(45deg, #8d0281, #000000, #673AB7);
    overflow: hidden;
}



@keyframes waveAnimation {
    0% { height: 10px; }
    50% { height: 100px; }
    100% { height: 10px; }
}

/* Audio Toggle Styles */
#audioToggleButton {
  transition: color 0.3s ease;
  cursor: pointer;
}

#audioToggleButton.audio-disabled {
  color: #ff0000;
}

#audioToggleButton.fa-volume-up {
  color: #00bfff;
}
