@charset "utf-8";

.main {
  margin: 40px auto;
  margin-top: 120px;
  padding: 0 20px;
  max-width: 900px;
}

.h1 {
  text-align: center;
  padding-bottom: 40px;
  font-size: 2rem;
  color: var(--primary-color);
}

.table-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

table {
  width: auto;
  /* Changed from 100% */
  min-width: 60%;
  max-width: 100%;
  margin: 0 auto 30px;
  /* Center */
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

table tr {
  border-bottom: 1px solid #eee;
}

table th,
table td {
  padding: 15px 20px;
  border: 1px solid #ddd;
  text-align: left !important;
  /* Force left alignment */
}

table th {
  background-color: #F0FAFC;
  color: var(--primary-color);
  font-weight: 700;
  width: 30%;
  white-space: nowrap;
}

table td {
  color: var(--text-color);
}

@media (max-width: 600px) {
  .h1 {
    font-size: 1.5rem;
  }

  table th,
  table td {
    display: block;
    width: 100%;
    text-align: left;
    /* Ensure mobile also left aligned */
  }

  table th {
    background-color: #E0F2F7;
    border-bottom: none;
  }

  table td {
    border-top: none;
    padding-top: 10px;
  }

  .main {
    margin-top: 50px;
  }
}