/* Default font size */
body {
  font-size: 10px;
  background-color: rgb(231, 243, 181);
  overflow: hidden;
  font-family: "Arial", "Helvetica", sans-serif;
}

.crossed-text {
  text-decoration: line-through;
}

#drop-area {
  width: 50px;
  height: 50px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 0px;
  cursor: pointer;
}

#image-icon {
  margin: 5px;
  font-size: 10px;
  color: #999;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/rough_paper.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  opacity: 0.3;
}

/* video {
  width: 20%;
  height: auto;
}

canvas {
  width: 20%;
  height: auto;
} */

.input-textbox-style {
  position: absolute;
  top: 90vh;
  left: 0vw;
  ;
  width: 75vw;
  height: 7%;
  min-height: 3vh;
  max-height: 3vh;
  margin: 20px;
  border: 2px solid black;
  border-radius: 15px;
  overflow-y: scroll;
  font-size: 2em;
  padding: 10px;
  /* display: flex;
  align-items: center;
  justify-content: center; */

}

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

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

.mainContainer {
  /* display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; */
  margin: 0px 10px 0px 10px;
  padding: 0;
  /* border: 2px solid black; */
  /* border-radius: 10px; */
}

.outputDialog {
  /* width: 70vw; */
  /* height: 77vh; */
  width: 100%;
  background-color: transparent;
  min-height: 80vh;
  max-height: 80vh;
  /* margin: 10px auto; */
  /* border: 2px solid black; */
  /* border-radius: 15px; */
  overflow-y: scroll;
  font-size: 1.8em;
  padding: 10px;
  margin: 0;
  border: 2px solid black;
  border-radius: 10px;
}

.outputDialog2 {
  width: 20vw;
  /* height: 77vh; */
  min-height: 70vh;
  max-height: 70vh;
  /* margin: 10px auto; */
  border: 2px solid black;
  border-radius: 15px;
  overflow-y: scroll;
  font-size: 1.8em;
  padding: 10px;

}

.outputDialog::-webkit-scrollbar {
  display: none;
}

.imageButton {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  border: 2px solid black;
  background-color: transparent;
  margin-right: 10px;
  cursor: pointer;
  box-shadow: 0px 3px 8px 3px rgba(0, 0, 0, 0.5);
}

.button-container {
  display: flex;
  align-items: center;
  margin-right: 10px; /* Add some spacing between the buttons */
}

.headerButton {
  width: 25px;
  height: 25px;
  border-radius: 20%;
  /* border: 1px solid black; */
  background-color: transparent;
  margin-right: 10px; 
  margin-bottom: 5px;
  cursor: pointer;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.5);
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-description {
  position: absolute;
  top: -60%;
  left: -40%;
  /* max-width: 200%; */
  width: 120%;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  color: #fff;
  padding: 10px;
  display: none;
  text-align: center;
}

.image-container:hover .image-description {
  display: block;
}

.onoffbutton {
  position: absolute;
  font-size: 2em;
  padding: 0px;
  width: 19vw;
  min-height: 5vh;
  align-items: left;
  /* margin-left: 12vw; */
  border-radius: 10px;
  border: 2px solid black;
}

.onoffbutton2 {
  font-size: 2em;
  padding: 0px;
  width: 19vw;
  min-height: 5vh;
  align-items: left;
  border-radius: 10px;
  border: 2px solid black;
}

.sourceInput {
  position: absolute;
  top: 12vh;
  right: 2%;
  width: 30vw;
  min-height: 30vh;
  max-height: 30vh;
  resize: none;
  text-align: left;
  vertical-align: text-top;
  font-size: 1.2em;
  overflow-y: scroll;
  border-radius: 15px;
  border: 2px solid black;
  padding: 10px;
}

textarea {
  resize: vertical;
  /* allows vertical resizing */
  height: 150px;
  /* adjust the height as per your preference */
  width: 300px;
  /* adjust the width as per your preference */
  overflow-y: auto;
  /* adds vertical scrollbar when needed */

  /* enables auto word wrap */
}

/* .output-style-dialog {

    width: 96vw;
    height: 77vh;
    min-height: 75vh;
    max-height: 75vh;
    margin: 10px auto;
    border: 2px solid black;
    border-radius: 15px;
    overflow-y: scroll;
    font-size: 1.8em;
    padding: 10px;
  } */