table {
  width: 100%;

  margin: 20px auto;
  border-collapse: collapse;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #3e3e3e;
  background-color: #ffffff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

th {
  background-color: #f5f5f5;
  color: #2d2d2d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

tr:hover {
  background-color: #ececec;
  transition: background-color 0.2s ease-in-out;
}