/* Base page styling */
body {
  font-family: sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 1rem;
  line-height: 1.5;
}

/* Centered content box */
.container {
  max-width: 900px;
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Ensure wide tables scroll on mobile */
.table-wrapper {
  overflow-x: auto;
}

/* Table layout */
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}

/* Links */
a {
  display: inline-block;
  margin-top: 1rem;
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive font and spacing tweaks */
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }

  .container {
    padding: 1rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  th, td {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}
