/* ======================================
   BULK EMBRYO PAGE
====================================== */

.bulk-embryo-page {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* ======================================
   SHARED WIDGETS
====================================== */

.bulk-embryo-page .widget {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(2, 6, 23, 0.96)
  );

  border: 1px solid rgba(148, 163, 184, 0.18);

  border-radius: 16px;

  padding: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* ======================================
   HEADER
====================================== */

.bulk-embryo-header-widget h2 {
  margin: 0 0 10px 0;

  font-size: 28px;

  color: white;

  font-weight: 800;
}

.bulk-embryo-header-widget p {
  color: #94a3b8;

  margin: 0;
}

/* ======================================
   INFO
====================================== */

.bulk-embryo-info-widget h3 {
  color: white;

  margin-bottom: 15px;
}

.info-content {
  color: #cbd5e1;

  line-height: 1.7;
}

.info-content p {
  margin: 8px 0;
}

/* ======================================
   STATS
====================================== */

.embryo-stat-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;
}

.embryo-stat-card {
  background: linear-gradient(145deg, #111827, #020617);

  border-radius: 14px;

  padding: 22px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.embryo-stat-card h4 {
  color: #94a3b8;

  font-size: 14px;

  text-transform: uppercase;

  margin-bottom: 12px;
}

.embryo-stat-card span {
  color: #38bdf8;

  font-size: 32px;

  font-weight: 900;
}

/* ======================================
   CATTLE SELECTION
====================================== */

.bulk-select-all-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #111827;

  padding: 15px;

  border-radius: 12px;

  margin-bottom: 15px;

  color: #e2e8f0;
}

.bulk-select-all-row input {
  transform: scale(1.3);

  accent-color: #22c55e;
}

.bulk-cattle-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #111827;

  padding: 15px;

  margin-bottom: 10px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.2s ease;
}

.bulk-cattle-row:hover {
  transform: translateY(-2px);

  border-color: #38bdf8;
}

.bulk-cattle-row.selected {
  background: linear-gradient(135deg, #14532d, #166534);

  border-color: #22c55e;

  box-shadow: 0 0 15px rgba(34, 197, 94, 0.35);
}

.cattle-checkbox {
  transform: scale(1.3);

  accent-color: #22c55e;
}

/* ======================================
   BUTTON
====================================== */

.bulk-submit {
  width: 100%;

  margin-top: 20px;

  padding: 15px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(135deg, #dc2626, #991b1b);

  color: white;

  font-size: 17px;

  font-weight: 800;

  cursor: pointer;

  transition: 0.2s ease;
}

.bulk-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 700px) {
  .bulk-embryo-page .widget {
    padding: 16px;
  }

  .bulk-embryo-header-widget h2 {
    font-size: 22px;
  }

  .embryo-stat-grid {
    grid-template-columns: 1fr;
  }

  .bulk-cattle-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }
}
