/* =========================================================
   REPORT CARD
========================================================= */

.report-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========================================================
   REPORT HEADER
========================================================= */

.report-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.report-name {
  color: var(--primary);
}

.report-date {
  font-size: 12px;
  color: #6b7280;
}

/* =========================================================
   REPORT META
========================================================= */

.report-meta {
  font-size: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #4b5563;
}

/* =========================================================
   REPORT FORM
========================================================= */

.report-form {
  display: grid;
  gap: 10px;

  background: var(--card);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.report-form input,
.report-form select,
.report-form textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.report-form button {
  background: var(--primary);
  color: white;
  border: none;

  padding: 10px;
  border-radius: 10px;

  cursor: pointer;
}

/* =========================================================
   REPORT SECTIONS
========================================================= */

.report-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

/* =========================================================
   SPECIES LIST
========================================================= */

.species-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.species-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #374151;
}