/* Existing styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#page-container {
  position: relative;
  min-height: 100%;
}

#content-wrap {
  padding-bottom: 40px;  /* Footer height */
}

.site-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35px !important;  /* Fixed height of the footer */
  padding: 5px 0 !important;
}

.site-footer .wrapper {
  padding-top: !important;
  padding-bottom: !important;
}

.footer-content {
  text-align: center;
  font-size: 0.8em;
  line-height: 1.2;
}

/* New styles for mobile menu */
.site-nav {
  float: right;
  position: relative;
}

.site-nav .nav-trigger {
  display: none;
}

.site-logo {
  max-height: 50px;  
  width: auto;
}

.site-nav .menu-icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #fdfdfd;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    text-align: right;
  }

  .site-logo {
    max-height: 35px;  /* Even smaller on mobile devices */
    margin-bottom: 7px;
  }

  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
    cursor: pointer;
  }

  .site-nav .trigger {
    clear: both;
    display: none;
  }

  .site-nav .nav-trigger:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }

  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
    margin-left: 20px;
  }

  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
}


/* Styles for the Themes section */
.themes-container {
  margin-bottom: 20px;
}

.themes-list {
  padding-left: 20px;
}

.themes-list > li {
  margin-bottom: 15px;
  list-style-type: none;
  position: relative;
  padding-left: 25px;
}

.themes-list > li:before {
  content: "➤";
  color: #007bff;  /* You can change this color to match your site's theme */
  position: absolute;
  left: 0;
}

.themes-list ul {
  padding-left: 20px;
  margin-top: 5px;
}

.themes-list ul li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.themes-list ul li:before {
  content: "•";
  color: #6c757d;  /* You can change this color to match your site's theme */
  position: absolute;
  left: 0;
}

/* New styles for bold text */
.themes-list strong {
  color: #0056b3;  /* Darker blue for contrast, adjust as needed */
  font-weight: 600;  /* Slightly bolder than normal text */
}


/* PDF Container styles */
.pdf-container {
  margin: 2em 0;
}

.desktop-pdf {
  display: none;
}

.mobile-pdf {
  display: block;
  margin: 1em 0;
}

.pdf-button {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #0366d6;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.pdf-button:hover {
  background-color: #024ea7;
  text-decoration: none;
}

/* Show desktop version on larger screens */
@media screen and (min-width: 768px) {
  .desktop-pdf {
    display: block;
  }
  
  .mobile-pdf {
    display: none;
  }
}
