#input-box {
/*	    display: flex;*/
     display: none; 
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: -webkit-fill-available;
    background-color: rgba(0, 0, 0, 0.5);
}

#input-box .input-box-content {
    background-color: var(--primary-color-dark);
    margin: auto;
    width: 80vh;
/*	    height: 40vh;*/
    position: relative;

	color: var(--secondary-color);
    border-radius: 5vh;
	padding: 3vh 3vh;
}

#input-box h1 {
    font-size: 3vh;
}

#input-box input {
    width: 100%;
    padding: 1.5vh;
    border-radius: 0.5vh;
    border: none;
    background-color: #c34033;
    color: var(--secondary-color-dark);
    opacity: 0.5;
    font-size: 2vh;
    margin-top: 2vh;
}
#input-box input::placeholder {
    color: var(--secondary-color-dark);
}
#input-box input:focus {
    outline: none;
}

#input-box button {
    width: 100%;
    margin-top: 2.5vh;
    padding: 1.5vh;
    background-color: #c34033;
    border: none;
    border-radius: 0.5vh;
    color: var(--secondary-color-dark);
    font-size: 2.5vh;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: scale 1s ease, opacity 1s ease;
}
#input-box button:hover {
	opacity: 0.8;
	scale: 0.975;
}

#input-box .spinner-loader {
    z-index: 3;
    position: absolute;
    top: calc(50% - var(--spinner-size) / 2);
    left: calc(50% - var(--spinner-size) / 2);
}

#input-box img {
    position: absolute;
    top: 1vh;
    right: 1.5vh;
    cursor: pointer;

    padding: 1vh;
    background: var(--primary-color-dark);
    border-radius: 1vh;
    font-size: 10vh;
    width: 5vh;
}
#input-box img:hover {
	opacity: 0.8;
}

/* Full-screen dark overlay */
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 1; /* Place behind spinner but in front of the background */
}
