[hidden] {
  display: none !important;
}

.claim-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #edf0f4;
}

.claim-row:first-of-type {
  border-top: 0;
}

.claim-row > span:last-child {
  display: flex;
  gap: 7px;
}

.claim {
  padding: 7px 10px;
  border-radius: 6px;
}

.claim.approve {
  background: #e7f7ed;
  color: #176b37;
}

.claim.reject {
  background: #fff0ef;
  color: #b42318;
}

@media (max-width: 600px) {
  .claim-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .claim-row > span:last-child {
    width: 100%;
  }

  .claim {
    flex: 1;
  }
}
