/* General styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-top: 13vh;
    h2 {
  font-size: 1.3rem;
  color: #ffffff;
}

p, ul {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ddd;
}

ul {
  padding-left: 25px;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

}



/* Style the title */
.title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

/* Table Container */
.table-container {
  overflow-x: auto;
  border-radius: 8px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  color: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1)/* Thin divider lines */

}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1); /* Thin divider lines */
  vertical-align: top;
}

/* Header Styling */
th {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}



/* First Row Divider Line */
tr {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

/* Rounded Corners (for modern look) */
table tr:first-child th:first-child {
  border-top-left-radius: 8px;
}
table tr:first-child th:last-child {
  border-top-right-radius: 8px;
}
table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}
table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

/* Responsive: smaller padding and font */
@media (max-width: 768px) {
  th, td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}


.updated {
  text-align: center;
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 30px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  

  .title {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  p, ul {
    font-size: 0.95rem;
  }
}
}

@media (max-width: 480px) {
  .container {
    padding: 25px 10px;
  

  .title {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1rem;
  }

  p, ul {
    font-size: 0.9rem;
  }
}
}
