.records-meta .records-kind {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 24px;
  margin-bottom: 10px;
}

.records-meta .records-kind span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: #6842e8;
  background: #f0edff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.records-meta .records-actions {
  display: grid;
  align-items: stretch;
  gap: 6px;
}

.records-meta .records-actions-logo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.records-meta .records-actions-single {
  grid-template-columns: minmax(0, 1fr) 72px;
}

.records-meta .records-actions a,
.records-meta .records-actions button,
.records-meta .records-actions .records-pending {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 5px 7px;
  color: #344054;
  background: #f3f5f9;
  border: 1px solid #e2e7f0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.records-meta .records-actions button.records-delete {
  color: #b42318;
  background: #fff;
  border-color: #f1c7c3;
  cursor: pointer;
}

.records-meta .records-actions button.records-delete:hover {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

.records-meta .records-actions button.records-delete:disabled {
  cursor: wait;
  opacity: 0.55;
}

.records-meta .records-actions a:first-child {
  color: #fff;
  background: #6842e8;
  border-color: #6842e8;
}

.records-meta .records-actions a:hover {
  border-color: #6842e8;
}

.records-meta .records-actions .records-pending {
  grid-column: 1 / -1;
  color: #b45309;
  background: #fff7ed;
  border-color: #fed7aa;
}

@media (max-width: 360px) {
  .records-meta .records-actions-logo {
    grid-template-columns: 1fr;
  }
}
