* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #fafafa;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

table {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); */
  border: 1px solid #e5e5e5;
}

thead {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

th {
  padding: 16px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tbody tr {
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s ease;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: #fafafa;
}

td {
  padding: 20px 24px;
  font-size: 15px;
  color: #171717;
}

td:first-child {
  color: #a3a3a3;
  font-weight: 500;
  width: 80px;
}

td:nth-child(2) {
  font-weight: 500;
}

a {
  color: #171717;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.15s ease;
  background: #ffffff;
}

a:hover {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}

@media (max-width: 768px) {
  body {
    padding: 40px 16px;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  table {
    font-size: 14px;
  }

  th,
  td {
    padding: 12px 16px;
  }

  th {
    font-size: 11px;
  }

  td:first-child {
    width: 60px;
  }
}
