* {
  box-sizing: border-box;
}

body {
  height: fit-content;
  min-height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

#wrapper {
  width: 100vw;
  height: 100vh;
  display: grid;
  justify-items: center;
  align-content: center;
  justify-content: center;
  border: 4px inset black;
}

#header-text {
  text-align: center;
  font-weight: bold;
  margin: 0;
}

#div1 {
  padding: 15px;
  border: 3px inset rgb(238, 238, 238);
  border-bottom: 0px;
  background-color: rgb(248, 248, 248);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#div2 {
  padding: 15px;
  padding-top: 0px;
  width: 100%;
  border: 3px outset rgb(238, 238, 238);
  border-top: 0px;
  background-color: rgb(248, 248, 248);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#submit {
  width: 50%;
  height: 30px;
  margin-left: 25%;
  border-radius: 8px;
  border: 0;
  background-color: rgb(1,1,1);
  color: white;
  font-size: 18px;
}

#submit:hover {
  cursor: pointer;
  border: 2px inset rgb(150, 150, 150);
}

#submit:active {
  border-width: 2px;
}

#incorrect-login {
  display: none;
  position:fixed;
  top: 82%;
  left: 40%;
  width: 30%;
  font-size: 20px;
  color: rgb(182, 12, 15);
}

#nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  width: 17vw;
  float: left;
  height: 100vh;
}

#navigation {
  margin-top: 10px; /* Add some margin for spacing */
  width: 100%;
  padding: 0px 20px;
}

#navigation h3 {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 15px; /* Add some spacing between the h3 and buttons */
}

.buttonsMainMenu {
  background-color: rgb(182, 12, 15);
  display: block;
  height: 40px;
  margin-bottom: 5px; /* Add some spacing between the buttons */
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  text-align: center;
  border: none;
  font-weight: bold;
  border: 1px solid rgb(146, 146, 146);
  transition: background-color 0.15s, margin-left 0.15s;
}

.buttonsMainMenu:hover {
  background-color: rgb(216, 216, 216);
  margin-left: 10px;
  border-top-right-radius: 0px;
  color: black;
}

.text {
  text-align: center;
  font-family: Arial;
  font-weight: bold;
  font-size: 20px;
  line-height: 0;
}

.form {
  width: 100%;
}

#schedule {
  overflow-x: auto;
}

th
{
  background-color: rgb(182, 12, 15);
}

.blackWhiteButton:hover {
	cursor: pointer;
}

.smallBlackButton {
	border: 0px;
	background-color: black;
	color: white;
	margin-bottom: 5px;
	border-radius: 4px;
	padding: 8px 10px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	transition: background-color 0.15s;
	width: 100px;
	height: 45px;
	vertical-align: top;
}

.smallBlackButton:hover {
	background-color: rgb(146, 146, 146);
	cursor: pointer;
}
