/* ======================================
   BULK BREEDING PAGE
====================================== */

.bulk-breeding-page {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* ======================================
   SHARED WIDGET STYLE
====================================== */

.bulk-breeding-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-breeding-header-widget h2 {
  margin: 0 0 10px;

  font-size: 28px;

  color: white;
}

.bulk-breeding-header-widget p {
  margin: 0;

  color: #94a3b8;
}

/* ======================================
   BULL SELECT
====================================== */

.bulk-breeding-bull-widget h3,
.bulk-breeding-females-widget h3 {
  color: #38bdf8;

  margin-bottom: 15px;
}

.bulk-breeding-bull-widget select {
  width: 100%;

  padding: 12px;

  border-radius: 10px;

  border: 1px solid #334155;

  background: #020617;

  color: white;

  font-size: 15px;
}

/* ======================================
   STATS
====================================== */

.breeding-stat-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;
}

.breeding-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);
}

.breeding-stat-card h4 {
  color: #94a3b8;

  font-size: 14px;

  margin-bottom: 10px;
}

.breeding-stat-card span {
  color: #38bdf8;

  font-size: 30px;

  font-weight: 900;
}

/* ======================================
   FEMALE SELECTION
====================================== */

.select-all-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #111827;

  padding: 15px;

  border-radius: 12px;

  margin-bottom: 15px;
}

.select-all-row input {
  transform: scale(1.3);

  accent-color: #22c55e;
}

.breeding-cattle-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  background: #111827;

  padding: 15px;

  border-radius: 12px;

  margin-bottom: 10px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.2s ease;
}

.breeding-cattle-row:hover {
  transform: translateY(-2px);

  border-color: #38bdf8;
}

.breeding-cattle-row small {
  color: #94a3b8;
}

.female-check {
  transform: scale(1.3);

  accent-color: #22c55e;
}

/* ======================================
   BUTTON
====================================== */

.bulk-breeding-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;
}

.bulk-breeding-submit:hover {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

/* ======================================
   MOBILE
====================================== */

@media (max-width: 700px) {
  .bulk-breeding-page .widget {
    padding: 15px;
  }

  .breeding-stat-grid {
    grid-template-columns: 1fr;
  }

  .breeding-cattle-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }
}
