body {
  background-color: #dcdcdc;
}

table {
  border-collapse: collapse;
  max-width: 750px;
}

th, td {
  text-align: left;
  padding: 8px;
  border: 1px solid #ddd;
}

th {
  background-color: #333;
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #c0c0c0;
}

tr:nth-child(odd) {
  background-color: #f0f0f0;
}

/* Styles for the search box */
#search-box {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Style the navbar */
nav {
  background-color: #333;
  overflow: hidden;
}

/* Remove bullets from the list */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Style the links */
nav a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 18px;
}

/* Change the link color when hovering */
nav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a style to the active link */
.active {
  background-color: #4CAF50;
}

/* Align the logout link to the right */
nav li:last-child {
  float: right;
}

/* Display the links in a horizontal row */
nav li {
  display: inline-block;
  position: relative;
}

/* Add a separator between the links */
nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background-color: white;
}

#login-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Make the wrapper take up the full height of the viewport */
}

form {
  width: 300px; /* Set the width of the form */
}

.right {
  float: right;
}

.left {
  float: left;
}

.align-left {
  text-align: left;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hide {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.prev {
  left: 0;
}

/* Previous and next buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -5%;
  padding: 16px;
  color: coral;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
