.table-wrap {
  width: 80%;
  overflow-x: auto;
  padding: 1rem 0;
  background-color: #e6e6e6;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.table-h2 {
  text-align: center;
  font-size: 2rem;
}

.table-h3 {
  color: rgb(0, 98, 231);
  text-align: center;
  font-size: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}

th {
  background: #e6e6e6;
  color: #333;
  font-weight: 500;
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1.5px solid #ccc;
  white-space: nowrap;
}

td {
  padding: 8px 10px;
  white-space: nowrap;
}

tr:nth-child(odd) td {
  background: #e6e6e6;
}

tr:nth-child(even) td {
  background: #f2f2f2;
}

tr:hover td {
  filter: brightness(0.96);
}

.mobile-scroll-msg {
  display: none;
}

@media (max-width: 768px) {
  .table-wrap {
    width: 100%;
  }

  .mobile-scroll-msg {
    display: block;
    font-style: italic;
  }
}
