.logo {
  margin-top: 5px;
  display: block;
  width: 10%;
  margin-left: auto;
  margin-right: auto
}


.logo-top {
  display: block;
  width: 32px;
  margin-left: auto;
  margin-right: auto
}

.top-spacer{
  margin-top: 8px;
}

.button-top {
  margin-top: 4px;
}

.centered {
  padding-top: 4px;
  text-align: center;
}

/* 
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
/* .topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
} */ 



#loading-overlay {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #333;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-container {
    text-align: center;
    margin-top: 30px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.image-container p {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0;
}