/* Container and Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: transparent;
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  color: #34495e;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

  /* Footer for guide steps */
  .footer.fixed {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #34495e;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: -40px;
    margin-bottom: -60px;
    box-sizing: border-box;
  }

  .footer a {
    color: #4169E1;
    text-decoration: none;
  }

    .footer a:hover {
      text-decoration: underline;
    }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
  top: -50px;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Selection Dropdown Styling */
.selection {
  margin-top: -70px;
  margin-bottom: 90px;
}

label {
  font-size: 1.2rem;
  color: #34495e;
}

select {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #ecf0f1;
  margin-left: 10px;
  cursor: pointer;
}

  select:focus {
    outline: none;
    border-color: rgba(128, 128, 128, 0.5);
  }

/* Slideshow Container Styling */
.slideshow-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 1000px;
  margin: 30px auto;
  position: relative;
  margin-top: -60px;
  margin-bottom: -30px;
}

.guide-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

#guide-image {
  width: 600px;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}

#guide-text {
  font-size: 1.2rem;
  color: #2c3e50;
  text-align: center;
  min-height: 100px;
}

/* Lightbox container styling */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

  .lightbox img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
  }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  z-index: 1001;
}

/* Navigation Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 25px;
  padding: 10px 20px;
  font-size: 1.5rem;
  background-color: rgba(128, 128, 128, 0.5);
  color: white;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

  .prev:hover, .next:hover {
    background-color: rgba(128, 128, 128, 0.8);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .prev:active, .next:active {
    transform: scale(0.95);
    background-color: rgba(128, 128, 128, 0.9);
  }

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 1.2rem;
  }

  .prev, .next {
    padding: 8px 16px;
    font-size: 1.2rem;
  }
}

/* Adjust logo styling */
#logo {
  width: 300px;
  height: auto;
  margin-bottom: 5px;
  margin-top: -30px;
}
