:root {
  --bg-color: #ffffff;
  --text-color: #484848;
  --link-color: #484848;
  --link-hover-color: #235a86;
  --navbar-bg-color: #ffffff;
  --navbar-text-color: #ffffff;
  --navbar-border-color: #e1e1e1;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 10p;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.navbar {
  background-color: var(--navbar-bg-color);
  border-bottom: 1px solid var(--navbar-border-color);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}

.navbar-title {
  font-size: 1.9rem;
  margin: 0;
}

.navbar-internal-links,
.navbar-external-links {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
}

.navbar-internal-links li,
.navbar-external-links a {
  margin-left: 1rem;
}

.navbar-external-link svg {
  fill: var(--text-color);
}

.content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 10px;
}

.content h1 {
  font-size: 1.8rem;
  margin: 1rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem;
}

.btn {
  width: 100%; /* Makes the button stretch to the full width of its parent container */
  display: block; /* Ensures the button is block-level for width to take effect */
  margin-bottom: 10px; /* Optional: Adds some space below the button */
  background-color: #11549b;
  color: white;
}

.btn-secondary {
  background-color: #747474; /* Bootstrap's default secondary button color */
  color: #fff; /* White text color */
  border: 1px solid #6c757d; /* Border to match the background */
}

@media screen and (max-width: 768px) {
  #shareButton {
    display: inline-block; /* or 'block' depending on your layout */
    /* Additional styling for the button */
  }
}
/* Add this in styles.css */
h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

details {
  margin-bottom: 1.5rem;
}

p, ul, ol {
  line-height: 1.6;
  margin-bottom: 1rem;
}

summary {
  cursor: pointer;
}

main {
  padding: 1rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

summary:hover {
  color: #0073e6;
  text-decoration: underline;
}

details[open] {
  border-left: 4px solid #0073e6;
  background-color: #f9f9f9;
  padding-left: 1rem;
}

p, li {
  font-size: 1rem;
}

