/*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/

body {
  font-family: sans-serif;
  font-size: 1.125rem;
  display: flex;
  justify-content: center; /* Horizontal centering */
  min-height: 100vh;       /* Takes up full screen height */
  margin: 0;               /* Removes default browser spacing */
}

/* Centered Page Content */
.main-content {
  width: 70%;                 /* Your desired percent width */
  background-color: rgb(245, 245, 245); /* For visibility */
  padding: 20px;
}

/* Navbar container */
.navbar {
    background-color: #333;
    width: 100%;
    padding: 10px 20px;
}

/* Flexbox layout for menu items */
.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap; /* Allows items to wrap on mobile instead of hiding */
    /*
    justify-content: flex-start; */  /* Keeps menu left-justified */

    justify-content: center;
}

/* Individual link styling */
.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

/* Hover effect */
.nav-links a:hover {
    color: #4CAF50;
}

/*
.home-link, .xref-link, .verse-link, .about-link, .contact-link {
  background-color: #666;
  color: white;
}
*/

#home-page .home-link,
#crossref-page .crossref-link,
#verse-page .verse-link,
#about-page .about-link,
#contact-page .contact-link,
#other-page .other-link,
#partner-page .partner-link {
    color: green;
    font-weight: 550;
    border-bottom: 2px solid green;
}

/* Mobile specific adjustment */
@media screen and (max-width: 600px) {
    .nav-links li {
        margin-right: 15px; /* Slightly tighter spacing on small screens */
    }
    .nav-links a {
        font-size: 16px;
    }
}

.content-container {
    height: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.content2-container {
    height: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

body {
  font: 1.2em sans-serif;
}

.breadcrumb {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    padding: 10px 16px;
    background-color: #f8f9fa; /* Light background for visibility */
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: end;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 0.25rem;
    content: "→";
}

hr {
  border: none;
  border-top: 1px solid #333; /* Thickness and color */
  width: 80%; /* Width of the line */
  margin: 28px auto 18px auto; /* Centering and spacing */
}

footer {
  position: fixed;
  left: 15%;
  bottom: 0;
  width: 70%;
  background-color: #333;
  color: white;
  text-align: center;
  display: flex;
}

footer a, footer a:visited, footer a:active {
  color: white; /* Replace with your desired color */
  text-decoration: none; /* Optional: removes the underline */
}
