.dictionary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 35px 0;
  background: #fff;
  box-shadow: 0px 20px 60px rgba(0, 54, 135, 0.07);
  border-radius: 16px;
  overflow: hidden;
  font-size: 20px;
}

.dictionary-table thead {
  background: rgba(145, 59, 255, 0.08);
}

.dictionary-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'gorditamedium';
  color: #010d4c;
}

.dictionary-table td {
  padding: 18px 24px;
  border-top: 1px solid #f1f1f1;
  color: var(--text-color);
}

.dictionary-table tbody tr {
  transition: background 0.3s ease;
}

.dictionary-table tbody tr:hover {
  background: rgba(145, 59, 255, 0.04);
}

.dictionary-table td:first-child {
  font-family: 'gorditamedium';
  color: #010d4c;
}
