@import url("/styles/base.css");

table {
  width: 70%;
  border-radius: 6px;
  border-collapse: collapse;
  overflow: hidden;
  font-size: 1rem;
  margin: 0 auto;
}

table th,
table td {
  text-align: left;
  padding: 12px 16px;
}

table th {
  background-color: var(--color);
  color: white;
  font-weight: 600;
}

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

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tr:hover {
  background-color: #f1f1f1;
}