/* Default font size */
body {
  font-size: 10px;
  /* background-color: rgb(231, 243, 181); */
  /* background-color: 'linear-gradient(to bottom, #ddddff, #ffffff)'; */
  background-color: 'radial-gradient(circle, #ddddff, #ffffff)';
  /* background-color:rgb(225, 225, 255); */
  overflow: hidden;
}

.message {
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
  background: #eee;
  overflow: auto;
}

h1 {
  text-align: center;
  font-size: 3em;
  margin: 0em 0;
  margin: 0px auto 20px auto;
  height: 2.8vh;
}

code {
  font-size: 0.9em;
  line-height: 50%;
}

.next_button {
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}

.next_button_size {
  height: 1vh;
}

.languageButton{
  background-color: #4CAF50;
  /* Green */
  border: none;
  color: black;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 3vh;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid black;
}

.input_voice_box {
  width: 95%;
  height: 32%;
  min-height: 35vh;
  max-height: 35vh;
  margin: 5px auto;
  border: 1px solid black;
  border-radius: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* Hide horizontal scrolling */
  font-size: 2.6em;
  padding: 8px;
}

.input_question_box {
  width: 90%;
  height: 100%;
  box-sizing: border-box;

  margin: 2px auto;
  border: 1px solid black;
  border-radius: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* Hide horizontal scrolling */
  font-size: 1.6em;
  padding: 8px;
}

.output_voice_box {
  width: 95%;
  height: 32%;
  min-height: 35vh;
  max-height: 35vh;
  margin: 5px auto;
  border: 1px solid black;
  border-radius: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* Hide horizontal scrolling */
  font-size: 2.6em;
  padding: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

/* background-color: transparent; border: 1px solid black;font-size: 6vh; width: 100%; padding: 0; margin: 0;text-align: center;text-decoration: none; */

.banner {
  /* background-color: grey; */
  width: 100%;
  padding: 0;
  text-align: center;
  margin: 0px auto;
  /* border: 1px solid black; */
  font-size: 6vh;
}

.recordButton {
  /* background-color: rgb(0, 174, 255); */
  background-image: radial-gradient(circle, #00ccff, #0000ff);
  /* background-image: linear-gradient(, #cc40ff, #0000ff); */
  border-radius: 20px;
  width: 60%;
  height: 10vh;
  margin: 0px auto;
  display: block;
  border: 1px solid black;
  font-size: 3em;
  color: black;
  font-weight: bold;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.gradient-button {
  background-image: linear-gradient(to bottom, #ffcc00, #ff0000);
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

footer {
  /* background-color: #f2f2f2; */
  padding: 0px;
  text-align: center;
  font-size: 16px;
  color: #888;
  line-height: 0;
  /* Adjust the line spacing as desired */
}

.developer-name {
  font-weight: bold;
}

.trademark-name {
  font-style: italic;
}

.volumeBar {
  width: 60%;
  height: 10px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  border-radius: 3px;
  margin: 0 auto;
  font-size: 24px;
  display: none;
}

.volume-bar {
  width: 60%;
  height: 6px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  border-radius: 3px;
  margin: 0 auto;
}

.volume-bar-fill {
  height: 100%;
  background-color: #4caf50;
  border-radius: 3px;
  /* background-color: linear-gradient(to right, green, yellow, red); */
  width: 0;
  transition: width 0.1s ease;
}

@media (min-width: 1200px) {

  .input_voice_box {
    width: 99%;
    height: 32%;
    min-height: 35vh;
    max-height: 35vh;
    margin: 5px auto;
    border: 1px solid black;
    border-radius: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
    /* Hide horizontal scrolling */
    font-size: 2.6em;
    padding: 8px;
  }

  .output_voice_box {
    width: 99%;
    height: 32%;
    min-height: 35vh;
    max-height: 35vh;
    margin: 5px auto;
    border: 1px solid black;
    border-radius: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
    /* Hide horizontal scrolling */
    font-size: 2.6em;
    padding: 8px;
  }

  .recordButton {
    /* background-color: rgb(0, 174, 255); */
    background-image: radial-gradient(circle, #00ccff, #0000ff);
    border-radius: 20px;
    width: 60%;
    height: 10vh;
    margin: 0px auto;
    display: block;
    border: 1px solid black;
    font-size: 6em;
    color: black;
    font-weight: bold;
  }

}