/* Global Styles */
body, html {
  height: 100%;
  margin: 0;
  font-family: Times, serif;
  overflow: hidden; /* Prevent scroll during slideshow */
}

/* Header */
.header {
  background-color: #ffffff;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
}

.tab-navigation {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Info Content */
.info-content {
  line-height: 1.5;
  font-size: 20px;
  padding: 20px;
  display: none; /* Hidden until slideshow is clicked */
}

.link-list {
  list-style: none;
  padding-left: 5px;
}

.link-list li a {
  text-decoration: none;
  color: red;
}

/* Fullscreen Slideshow */
.slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Dark overlay */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Back Button */
.back-button {
  text-decoration: none;
  color: black;
  font-size: 18px;
  position: absolute;
  top: 10px;
  left: 10px;
}
