/* pink: #e622c5 
  terminal green: #33ff33
*/

.sub-section {
    border: 3px solid var(--colorVar_terminalGreen);
    box-sizing: border-box;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 5px;
}

.wide-column {
    width: 75%;
}

.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
    align-items: flex-end;
}

textarea {
    flex-grow: 1;
    flex-basis: 160px;
    border-radius: 20px;
    padding: 10px;
    margin: 10px;
    width: -webkit-fill-available;
    height: 80%;
}

input {
  flex-grow: 1;
  flex-basis: 160px;
  border-radius: 20px;
  padding: 10px;
  margin: 10px;
  width: -webkit-fill-available;
  height: 80%;
}

#username, #password, #contact_name, #email, #sms_contact_number {
  margin: 10px;
  width: -webkit-fill-available;
  border-radius: 20px;
  height: 2em;
  padding-left: 10px;
}

.something-else {
    flex-grow: 3;
    flex-basis: 200px;
}

button {
    flex-grow: 1;
    flex-basis: 80px;
}

button:hover .tooltip {
visibility: visible;
}

/* Make the Placeholders' characters in italics */
::-webkit-input-placeholder {
    font-style: italic;
 }
 :-moz-placeholder {
    font-style: italic;  
 }
 ::-moz-placeholder {
    font-style: italic;  
 }
 :-ms-input-placeholder {  
    font-style: italic; 
 }

/* ###################################################### SVGs ######################## */

.svg-container svg {
    width: auto; /* Scale to the width of the container */
    height: auto; /* Scale height proportionally */
    display: block; /* Remove any extra space below the svg */
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }
  
  .toggle-inner {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .toggle-label {
    background-color: var(--colorVar_terminalGreen);
  }
  
  input:checked + .toggle-label .toggle-inner {
    transform: translateX(26px);
  }
  
  .toggle-label:active .toggle-inner {
    width: 30px;
  }

  .hidden {
    display: none;
  }

  .terminal-text {
    color: var(--colorVar_terminalGreen);
  }
  .center-content {
    justify-content: center;
  }

  .recording-active-indicator {
    width: 100vh;
    height: 100vh;
    display: none;
  }

  textarea {
    color: var(--colorVar_terminalGreen);
    background-color: var(--mainBGcolor);
    border: 4px solid var(--colorVar_terminalGreen);
    outline: none !important;
    font-size: x-large;
  }

  input {
    color: var(--colorVar_terminalGreen);
    background-color: var(--mainBGcolor);
    border: 4px solid var(--colorVar_terminalGreen);
    outline: none !important;
    font-size: x-large;
  }

  #chooseLocalLogLocationButtonText {
    font-size: larger;
  }
  
  .activated {
    display: block;
    width: 100%;
    z-index: 9999;
  }

  .waves-animation {
    margin:-10px;
  }

  .whole-page-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    backdrop-filter: blur(5px);
  }
  .overlay-content {
    font-size: 50px;
    font-weight: bold;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Below the modal but above other content */
    display: none;

    /* display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mainBGcolor);
    opacity: 0.6;
    filter: blur(5px); */
}

.blur {
    filter: blur(5px);
}



/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--mainBGcolor); 
  border-radius: 20px;
  margin: 4px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--buttonColorVar_001_hover); 
  border-radius: 20px;
  cursor: -webkit-grab;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--colorVar_terminalGreen); 
}

/* The pseudo-element containing the resizer pseudo-element  */
::-webkit-scrollbar-corner {
  background-color: transparent;
  
}

.drop-area {
  border: 2px dashed var(--colorVar_terminalGreen);
  border-radius: 20px;
  text-align: center;
  color: var(--colorVar_terminalGreen);
  padding: 17px;
  margin-top: 7px;
  font-size: medium;
}

.highlight {
  border-color: var(--buttonColorVar_001_hover);
  background-color: var(--colorVar_pinkAsFuck);
}

#transcription {
  overflow-y: scroll;
  height: auto;
  width: auto;
  color: var(--colorVar_terminalGreen);
  font-size: larger;
}

.auto-flex {
  flex: auto;
}

#majorSubSection {
  width: 50%; /* Default width */
  margin: 0 auto; /* Center the form */
}

@media (max-width: 1570px) {
  #majorSubSection {
    width: 70%; /* Width for screens narrower than 400px */
}
}

/* Media query for narrow screens */
@media (max-width: 730px) {
  #majorSubSection {
      width: 90%; /* Width for screens narrower than 400px */
  }
}