@charset "UTF-8";
html,body {
	height: 100%;
	margin: 0;
	padding: 0;
  background-color: black;
  color:cornsilk;
  font-size: max(25px,2vw);
}
::backdrop {
  backdrop-filter: blur(20px);
}
[popover] {
  background-color: black;
  color:cornsilk;
  border=1px solid red;
}
[popover] div {
  padding: 12px;
}
a,
a:visited {
    color: #ffffff;
    text-decoration: none; }
.viewportDiv {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100vh;
  width: 100vw;
}
.div1{
  background-color: black;
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  white-space: nowrap;   /* keeps text on one line */
  overflow: hidden;
  text-overflow: ellipsis; /* adds "..." if text is too long */
}
.icon {
  background-color: black; 
  border=1px solid black;
}
.remainingDiv{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.remainingDiv textarea {
  font-size: max(23px,2vw);
  color:cornsilk;
  border: none;
  background-color: transparent;
  resize: none;
  outline: none;
  flex: 1;
}
textarea::selection {
    color: white;
    background: blue;
}
.select-wrapper {
  flex: 1;
  max-width: 800px;      /* optional: constrain size */
  overflow: hidden;      /* prevents content spill */
}

select {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  white-space: nowrap;   /* keeps text on one line */
  overflow: hidden;
  text-overflow: ellipsis; /* adds "..." if text is too long */
  appearance: none;      /* removes default styling (optional) */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#myBookTitle {
  color: yellow;
}
input[type="checkbox"] {
  transform: scale(3); /* Adjust the scale factor as needed */
  vertical-align: middle;           /* Aligns with the middle of the text */
  margin-top: -5px;                 /* Adjust this value to fine-tune vertical position */
  margin-right: 10px;
}
input[type="range"] {
  transform: scale(1.2); /* Adjust the scale factor as needed */
  vertical-align: middle;           /* Aligns with the middle of the text */
  margin-left: 10px;
}
