@charset "UTF-8";
.tts-input {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.tts-input-table {
	width: 100%;
}

.col-copyright-spacer-left{width: 20%;}

.col-tts-input-text-input {width: 20%;}

.col-tts-input-spacer-center-left{width: 5%;}

.col-tts-input-airplane-dropdown{
	background-color: #2b2b2b;
	border-radius: 8px;
	text-align: center;
	width: 10%;
}

.col-tts-input-spacer-center{width: 3%;}

.col-tts-input-text-input-duration{width:5%;}

.col-tts-input-spacer-center-right{width: 5%}

.col-tts-input-submit-btn {width: 15%;}

.col-tts-input-spacer-right{width: 18%;}

#ttsInputText {
	position: relative;
	width: 100%;
	min-height: 35px;
	padding: 14px;
	color: #ffffff;
	font-size: 1vw;
	border: 1px solid #44444;
	background-color: #2b2b2b;
	resize: vertical;
	border-radius: 8px;
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: system-ui, -apple-system, sans-serif;
}

#ttsInputText:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

#ttsInputText::placeholder {
  color: #aaaaaa;
}

.tts-input-dropdown-header {
	widows: 100%;
	color: white;
	font-size: 0.9vw;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-weight: bold;
	-webkit-text-stroke: 0.5px #292929; 
	padding: 10px;
}

#airplane-dropdown {
	text-align: center;
	border-radius: 6px;
	width: 90%;
}

#ttsInputDuration {
	position: relative;
	width: 100%;
	min-height: 35px;
	padding: 14px;
	color: #ffffff;
	font-size: 1vw;
	border: 1px solid #44444;
	background-color: #2b2b2b;
	resize: vertical;
	border-radius: 8px;
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: system-ui, -apple-system, sans-serif;
}

#ttsInputDuration:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

#ttsInputDuration::placeholder {
  color: #aaaaaa;
}

.tts-submit-btn {
	width: 100%;
	background-color: #2b2b2b;
	min-height: 35px;
	color: white;
	border: None;
	padding: 14px;
	border-radius: 8px;
	font-size: 0.85vw;
	font-weight: 600;
	font-family: system-ui, -apple-system, sans-serif;
}

.tts-submit-btn:hover {
  background-color:#6A6A6A;
}

@media (max-width: 1200px) {
	.col-copyright-spacer-left{width: 10%;}
	.col-tts-input-spacer-center-left{width: 8% !important;}
	.col-tts-input-airplane-dropdown{width:20% !important;}
	.col-tts-input-spacer-center{width: 3% !important;}
	.col-tts-input-text-input-duration{width:10% !important;}
	.col-tts-input-spacer-center-right{width: 10% !important;}
	.col-tts-input-spacer-right{width: 6%;}
	
	#ttsInputText {
		width: 100% !important;
		min-height: 25px !important;
		font-size: 2vw !important;
	}
	
	#ttsInputDuration {
		width: 100% !important;
		min-height: 25px !important;
		font-size: 2vw !important;
	}
	
	.tts-input-dropdown-header {
		font-size:2vw !important;
	}
	
	.tts-submit-btn {
		min-height: 25px !important;
		font-size: 2vw !important;
	}
}