
html, body {
    font-family: 'Dongle', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    color:white;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

p {
  margin-bottom: 0;
}

.home-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-text {
  font-size: 96px;
  color: white;
  opacity: 0.8;
  position: relative;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  pointer-events: none; /* Allow clicks to pass through */
  z-index: -10;
}

.links-container {
  text-align: center;
}

.links-container h2, .links-container h5 {
  margin: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: none;
  color: #007bff;
}

.itemTable {
  width: 100%;
  border-collapse: collapse;
}

.itemTable td {
  border: 1px solid transparent;
  padding: 8px;
}

.itemTable tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.itemTable tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.itemTable input {
  width: 20px;
  height: 20px;
  accent-color: black;
  vertical-align:middle;
  margin-right:10px;
}

.error-message-list {
  padding-left: 20px;
  padding-right: 20px;
}

.error-message {
  padding-bottom: 5px;
}

button {
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 2px;
  background: var(--color4);
  display: block;
  margin-top: 20px;
}

button:hover {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px var(--color-bg1),
              0 0 25px var(--color-bg1),
              0 0 50px var(--color-bg1),
              0 0 100px var(--color-bg1);
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.button-container button {
  display: inline-block;
  margin: 0;
}

.flex-container{
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
    }
}

.wrapper {
  flex: 1;
  font-size: 12px;
  max-width: 1536px;
  margin: 0 auto 2em;
}

.footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.logo img {
  height: 24px;
}

.navbar_link:hover {
  color:black;
}

.burger {
  display: none;
  position: fixed;
  padding: 10px;
  top: 10px;
  left: 10px;
  cursor: pointer;
  width: 50px;  /* Ensure a larger clickable area */
  height: 50px; /* Ensure a larger clickable area */
  background-color: rgba(0, 0, 0, 0.7); /* Improve visibility */
  border-radius: 5px;
  z-index: 1000;
}

.burger .line {
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  z-index: 1001;
}

.burger.open .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  z-index: 1001;
}

.burger.open .line:nth-child(2) {
  opacity: 0;
  z-index: 1001;
}

.burger.open .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  z-index: 1000;
}

.navbar1 {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  position: fixed;
  top: 0;
}

.navbar_link{
  display: inline-block;
  list-style: none;
  background-color: rgb(159, 122, 189,0.9);
  border: 2px solid rgba(240, 240, 240, 0.7);
  border-top: none;
  color:white;
}

@media (max-width: 600px) {
  .burger{
    display:inline-block;
  }
  .navbar1 {
    display:none;
    flex-direction: column;
  }

  .navbar_link{
    padding: 10px;
    border-radius: 0px;
    width: 100%;
  }
}

@media (min-width: 601px) {
  .burger{
    display: none;
  }
  .navbar1 {
    display: flex;
    flex-direction: row;
  }

  .navbar_link{
    padding: 15px;
    border-radius: 0px 0px 10px 10px;
  }
}

.navbar_link:hover{
  background-color: rgba(240, 240, 240, 0.6);
}

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

.link-box {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #ffffff; /* White border */
  border-radius: 5px;
  background-color: rgba(240, 240, 240, 0.2); /* Slightly transparent light gray background */
  color: white;
  transition: background-color 0.3s ease;
  font-size: 20px;
}

.link-box:hover {
  background-color: rgba(240, 240, 240, 0.8);
  color: #000000;
}

.alertContainer {
  flex: content;
  display:flex; justify-content: center;
  min-height:70px;
}

.calendar-feed {
  margin: 10px 8px 10px 8px;;
  display: inline-block;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-container p {
  font-size: 16px;
  line-height: 1.5;
}

.link {
  text-decoration: solid;
  color: #db7093;
}

.link:hover {
  text-decoration: underline;
  color: #b66f81;
}

.searchInput {
  padding: 10px;
  margin: 10px;
  background-color: rgba(240, 240, 240, 0.2);
  border: 2px solid #ffffff;
  border-radius: 5px;
  color:white;
}
.searchDiv{
  text-align: center;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: var(--color-bg1);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px; /* Limit the width for better responsiveness */
  margin: auto; /* Center the modal horizontally */
}

/* Button Styles */
.modal-buttons {
  display: flex;
  justify-content: space-between;
}
