.table-wrap table td:last-child > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid #cfe0d3;
  border-radius: 999px;
  background: #edf6ef;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.16s,
    border-color 0.16s,
    color 0.16s,
    transform 0.16s,
    box-shadow 0.16s;
}
.table-wrap table td:last-child > a:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 5px 14px rgba(31, 107, 71, 0.18);
}
.table-wrap table td:last-child > a:focus-visible {
  outline: 3px solid rgba(38, 112, 77, 0.2);
  outline-offset: 2px;
}
@media (max-width: 650px) {
  .table-wrap table td:last-child > a {
    min-height: 32px;
    padding: 7px 12px;
  }
}
