/* Force light theme override */
body {
  background-color: #ffffff !important;
  color: #333333 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, strong, b {
  color: #000000 !important;
}

a {
  color: #0066cc !important;
}

a:hover {
  color: #004499 !important;
}

/* Code blocks */
pre, code {
  background-color: #f5f5f5 !important;
  color: #333333 !important;
}

/* Navigation */
nav a {
  color: #333333 !important;
}

/* Main content area */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer styling */
footer {
  color: #666666 !important;
  text-align: center !important;
  margin-top: auto !important;
  padding: 2rem 0 !important;
}

/* Center the footer content */
footer p {
  text-align: center !important;
  margin: 0.5rem 0 !important;
}

/* Footer links */
footer a {
  color: #0066cc !important;
  text-decoration: none !important;
}

footer a:hover {
  color: #004499 !important;
  text-decoration: underline !important;
}

/* Footer additional content */
footer .footer-links {
  text-align: center;
  margin-top: 1rem;
  color: #0066cc;
}

footer .footer-links a {
  color: #0066cc !important;
  text-decoration: none !important;
}

footer .footer-links a:hover {
  color: #004499 !important;
  text-decoration: underline !important;
}

/* Custom shortcode styles */
.alert {
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #0066cc;
  background-color: #f8f9fa;
}

.alert-warning {
  border-left-color: #ffc107;
  background-color: #fff3cd;
}

.alert-danger {
  border-left-color: #dc3545;
  background-color: #f8d7da;
}

.custom-quote {
  border-left: 4px solid #0066cc;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.custom-quote footer {
  font-style: normal;
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5rem;
}
