/*
 * 14-Oct-2025
 *    Added survery results styles
 *
 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  max-width: 600px;
}
.nav-bar {
  display: flex;
  justify-content: center;
  background-color: #333;
  padding: 1rem;
  list-style: none;
}
.nav-bar li {
  margin: 0 20px;
}
.nav-bar a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
.nav-bar a:hover {
  text-decoration: underline;
}
.image-container {
  position: relative;
  width: 400px;
  /* Adjust as needed */
  height: 300px;
  /* Adjust as needed */
}
.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-image {
  opacity: 0.7;
  /* Adjust opacity to blend images */
}
/* 
 * =============================================================================
 *             START DH ADD
 * =============================================================================
 */
.nav-bar li {
  padding: 2px 6px 2px 6px;
  border-radius: 8px;
}
.men_selected {
  background-color: maroon;
  color: black;
}
#div_main {
  text-align: left;
  margin: 0 1% 0 4%;
}
#div_main p {
  margin: 0.35em 0 0.35em 0;
}
#div_main ul {
  margin: 0.35em 0 0.35em 0;
}
h1,
h2,
h3,
h4,
h5 {
  color: #5A8CA9;
  margin-bottom: 2px;
  padding-bottom: 2px;
  font-family: Arial, Helvetica, sans-serif;
}
/* 
 * =============================================================================
 *             END DH ADD
 * =============================================================================
 */
#div_survey_results {
  margin-top: 10px;
  padding: 4px 6px;
  border: 3px solid #5A8CA9;
  background-image: url(../images/numbers3a.jpeg);
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}
#div_survey_results #div_survey_link {
  text-align: center;
  font-weight: bold;
}
/* Responsive Design */
@media (max-width: 600px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
  }
}
