/* Terms and Conditions Styles */
.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.terms-section {
  margin-bottom: 2rem;
}

.terms-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
}

.terms-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Footer Styles */
.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 1rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 123, 255, 0.2);
}

.footer-link:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Small Terms link in user nav */
.terms-link-small {
  color: inherit;
  text-decoration: none;
}

.terms-link-small:hover {
  text-decoration: underline;
}

/* Terms link on settings page */
.terms-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .toc-section h2 {
    color: #e0e0e0;
    border-bottom-color: #0056b3;
  }

  .toc-section a {
    color: #4da6ff;
  }

  .toc-section a:hover {
    color: #66b3ff;
  }

  .site-footer {
    background-color: #1a1a1a;
    border-top-color: #333;
  }

  /* Footer link always uses light theme colors, regardless of system preference */
  .footer-link {
    color: #6c757d !important;
    background-color: transparent !important;
  }

  .footer-link:hover {
    color: #007bff !important;
  }
}
