.ukp-card {
  border-radius: 14px;
  border: 1px solid #e6e8f0;
  overflow: visible;
}

.ukp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #e6e8f0;
  background: #f8f9fa;
  color: #344054;
  white-space: nowrap;
}

.ukp-badge-success {
  background: #ecfdf3;
  border-color: #abefc6;
  color: #027a48;
}

.ukp-badge-info {
  background: #eff8ff;
  border-color: #b2ddff;
  color: #175cd3;
}

.ukp-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ukp-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e6e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.ukp-check-item:hover {
  background: #f8f9fa;
}

.ukp-check-item .form-check-input {
  margin-top: 0;
}

.ukp-success {
  border-radius: 14px;
}

.ukp-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #027a48;
  flex: 0 0 auto;
}

.ukp-suggestions {
  position: absolute;
  z-index: 20;
  width: 100%;
  max-height: 260px;
  overflow: auto;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin-top: 0;
}

.ukp-suggestions .list-group-item {
  cursor: pointer;
}

@media (min-width: 520px) {
  .ukp-checklist {
    grid-template-columns: 1fr 1fr;
  }
}
