.ops-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.ops-metric {
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(0, 166, 147, 0.08);
}

.ops-metric span,
.ops-card span,
.ops-card small {
  display: block;
  margin-top: 0.25rem;
}

.ops-metric strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.35rem;
}

.ops-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(16, 42, 49, 0.1);
}

.ops-card:last-child {
  border-bottom: 0;
}

.ops-card > div {
  min-width: 0;
}

.ops-report span {
  max-width: 40rem;
  white-space: normal;
}

.ops-form select,
.ops-form textarea,
.ops-form input[type="number"] {
  width: 100%;
  border: 1px solid rgba(16, 42, 49, 0.14);
  border-radius: 1rem;
  background: #fff;
  color: inherit;
  font: inherit;
  padding: 0.85rem 1rem;
}

.ops-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.ops-checks {
  display: grid;
  gap: 0.6rem;
}

.ops-checks label {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.ops-message {
  margin-top: 0.75rem;
}

@media (max-width: 700px) {
  .ops-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-card button,
  .ops-card select {
    width: 100%;
  }
}
