/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
}

header {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
}

header img {
  height: 80px;
}

header nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

header nav ul li {
  display: inline;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

main {
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ddd;
  padding: 8px;
}

th {
  background-color: #4CAF50;
  color: white;
}

/* Slideshow Styles */
.slideshow-container {
  max-width: 600px; /* Further reduced size */
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
  position: relative;
  width: 100%;
}

.mySlides img {
  max-width: 100%; /* Limit the width of the images */
  max-height: 400px; /* Limit the height of the images */
  object-fit: contain; /* This will make sure the entire image is visible */
  vertical-align: middle;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%; /* Centered position */
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8);
}

.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);
}