/* Global font and base layout */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
  line-height: 1.6;
}

/* Force all text elements to inherit sans-serif */
body, h1, h2, h3, h4, h5, h6,
p, a, td, th, li, div, span, input, button {
  font-family: 'Inter', sans-serif !important;
}

/* Header styling */
h1 {
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

h3 {
  color: #1a1a1a;
  margin-top: 40px;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Section container */
.section {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
  text-align: left;
}

th {
  background-color: #f0f0f0;
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9em;
  text-align: center;
  color: #666;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  table, th, td {
    font-size: 14px;
  }
}