/*
Colors Used:
Light Blue: #C0E3F2
Med Blue: #537FE7
Very light blue: #E9F8F9
Dark blue/black: #181823
*/

*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: 'Lato';
}

body {
	height: 100vh;
	background-color: #edf5fa;
}

.header {
  width: 100%;
  height: 4em;
  display: block;
  background-color: #181823;
}

.inner-header {
  width: 85%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0 auto;
}

.inner-header img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.inner-header h1 {
  color: white;
  font-family: 'Lato';
  font-weight: 100;
  font-size: 32px;
  margin-right: 10px;
}

.inner-header h1 span {
  font-weight: 1000;
}

.inner-header h2 {
  color: white;
  font-family: 'Lato';
  font-size: 15px;
  font-weight: 100;
}

.inner-header h3 {
  color: white;
  font-size: 15px;
  font-weight: 100;
  font-style: italic;
  margin-left: auto;
  align-self: flex-end;
}

main {
	margin:;
	padding: 10px;
	height: 100%;
}

.note{
	font-size: 15px;
	font-weight: 100;
	font-style: italic;
	padding-bottom: 1em;
}

#top-container {
	display: flex;
	flex-direction: row;
}

.prev-list-container {
	background-color: white;
	border: 1px solid #101010;
	border-radius: 3px;
	padding: 0px;
	overflow-y: scroll;
	overflow-x: hidden;
	flex-grow: 1;
	max-height: 200px;
}

.prev-list {
	margin: 5px;
}

.prev-list li::before{
	content: "•";
}

.prev-list li:hover {
	background-color: skyblue;
	cursor: pointer;
}

.prev-list-title {
	background-color: #6980b5;
	border-bottom: 1px solid #101010;
	overflow: hidden;
	font-size: 20px;
	padding-left: 5px;
	position: sticky;
	top:0;
	z-index: ;
}

.input-form {
	display: flex;
	width: 30%;
	flex-direction: column;
	flex-wrap: wrap;
	margin-right: 20px;
}

.form-data-container {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding-bottom: 1.5em;
}

.form-row {
	display: flex;
	flex-direction: column-reverse;

}

.label-row input {
	min-width: 100%;
	height: 25px;
	border-radius: 10px;
	margin-bottom: 1.5em;
}

.submit-row {

}

.timestamp {
	font-size: 25px;
	font-weight: 150;
}

#test-label {
	font-size: 22.5px;
	font-weight: bold;
	border-bottom: 1px solid #101010;
	margin-bottom: 10px;
}

.styled-table {
	border: 1px solid #101010;
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	background-color: white;
}

.styled-table td, .styled-table th {
	border: 1px solid #101010;
	padding: 3px 2px;
}

.styled-table thead {
	background-color: #777777;
}

.styled-table thead th {
	color: white;
}

.vswr-logo-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.vswr-container {
	width: 50%;
}

.logo-container {
	width: 50%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	padding: 15px;
}

.logo-container img {
	max-width: 100%;
	height: auto;
	opacity: 0.5;
}

.rtwp-container {
	width: 100%;
}

.table-title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #181823
}

.failing-value {
	background-color: #f2796f;
}

.passing-value {
	background-color: palegreen;
}

.danger-value {
	background-color: yellow;
}

.cold-value {
	background-color: skyblue;
}

#plot-container {
	height: 100%;
}
.credit2 {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	font-style: italic;
	font-family: 'Lato';
	opacity: 0.5;

}

input[type="number"] {
	width: 100px;
},
input[type="text"]{
},
input[type="checkbox"],
input[type="file"] {
    flex: 2;
}

.plot-container {
	position: relative;
	border: 2px solid black;
	height: 40%;
	width: 100%;
	margin-bottom: 10px;
	background-color: white;	
}