/* =====================================
   CATTLEMANIA OFFER CENTER
===================================== */

.offer-detail-card {
  background: linear-gradient(145deg, #111827, #020617);

  border: 1px solid #334155;

  border-radius: 12px;

  padding: 20px;

  color: white;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.offer-detail-header {
  font-size: 22px;

  font-weight: bold;

  color: #38bdf8;

  border-bottom: 1px solid #334155;

  padding-bottom: 12px;

  margin-bottom: 15px;
}

.offer-detail-section {
  display: flex;

  justify-content: space-between;

  padding: 10px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-detail-label {
  color: #94a3b8;

  font-weight: bold;
}

.offer-detail-value {
  color: white;
}

.offer-detail-price {
  margin-top: 20px;

  background: #172554;

  border-left: 4px solid #22c55e;

  padding: 15px;

  font-size: 18px;
}

.offer-detail-price strong {
  color: #4ade80;

  font-size: 24px;
}

.offer-message-box {
  margin-top: 15px;

  background: #020617;

  padding: 15px;

  border-radius: 8px;
}

.offer-action-buttons {
  display: flex;

  gap: 15px;

  margin-top: 20px;
}

.offer-accept-btn,
.offer-reject-btn {
  flex: 1;

  padding: 12px;

  border: none;

  border-radius: 8px;

  cursor: pointer;

  font-weight: bold;

  font-size: 16px;
}

.offer-accept-btn {
  background: #16a34a;

  color: white;
}

.offer-reject-btn {
  background: #dc2626;

  color: white;
}

.offer-accept-btn:hover {
  background: #22c55e;
}

.offer-reject-btn:hover {
  background: #ef4444;
}
/* =====================================================
   CATTLEMANIA OFFER CENTER
===================================================== */

/* ===============================
   OFFER LIST CARD
=============================== */

.offer-list-card {
  background: linear-gradient(145deg, #111827, #020617);

  border: 1px solid #334155;

  border-radius: 12px;

  padding: 15px;

  margin-bottom: 12px;

  cursor: pointer;

  transition: all 0.2s ease;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.offer-list-card:hover {
  border-color: #38bdf8;

  transform: translateY(-2px);

  box-shadow: 0 0 18px rgba(56, 189, 248, 0.25);
}

/* ===============================
   TOP ROW
=============================== */

.offer-card-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 10px;
}

/* ===============================
   SENDER
=============================== */

.offer-card-sender {
  color: #94a3b8;

  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.offer-card-sender strong {
  display: block;

  color: #38bdf8;

  font-size: 18px;

  margin-top: 4px;
}

/* ===============================
   MONEY
=============================== */

.offer-card-money {
  color: #4ade80;

  font-size: 24px;

  font-weight: bold;

  white-space: nowrap;
}

/* ===============================
   INFO ROWS
=============================== */

.offer-card-info {
  margin-top: 12px;

  padding-top: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #e2e8f0;

  font-size: 15px;
}

/* ===============================
   DATE
=============================== */

.offer-card-date {
  margin-top: 10px;

  color: #64748b;

  font-size: 13px;
}

/* ===============================
   EMPTY STATE
=============================== */

.no-offers {
  background: #020617;

  border: 1px solid #334155;

  border-radius: 10px;

  padding: 20px;

  text-align: center;

  color: #94a3b8;
}

/* =====================================================
   OFFER DETAILS PANEL
===================================================== */

.offer-detail-card {
  background: linear-gradient(145deg, #111827, #020617);

  border: 1px solid #334155;

  border-radius: 14px;

  padding: 20px;

  color: white;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.45);
}

.offer-detail-header {
  color: #38bdf8;

  font-size: 22px;

  font-weight: bold;

  padding-bottom: 12px;

  margin-bottom: 15px;

  border-bottom: 1px solid #334155;
}

/* DETAILS ROWS */

.offer-detail-section {
  display: flex;

  justify-content: space-between;

  padding: 10px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-detail-label {
  color: #94a3b8;

  font-weight: bold;
}

.offer-detail-value {
  color: white;
}

/* PRICE BOX */

.offer-detail-price {
  margin-top: 18px;

  padding: 15px;

  background: #172554;

  border-left: 4px solid #22c55e;

  border-radius: 8px;

  font-size: 18px;
}

.offer-detail-price strong {
  color: #4ade80;

  font-size: 26px;
}

/* MESSAGE */

.offer-message-box {
  margin-top: 15px;

  background: #020617;

  border: 1px solid #334155;

  border-radius: 8px;

  padding: 15px;

  color: #e2e8f0;
}

/* ===============================
   BUTTONS
=============================== */

.offer-action-buttons {
  display: flex;

  gap: 12px;

  margin-top: 20px;
}

.offer-accept-btn,
.offer-reject-btn {
  flex: 1;

  padding: 12px;

  border: none;

  border-radius: 8px;

  cursor: pointer;

  font-weight: bold;

  font-size: 16px;

  transition: 0.2s;
}

.offer-accept-btn {
  background: #16a34a;

  color: white;
}

.offer-accept-btn:hover {
  background: #22c55e;
}

.offer-reject-btn {
  background: #dc2626;

  color: white;
}

.offer-reject-btn:hover {
  background: #ef4444;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 700px) {
  .offer-card-top {
    flex-direction: column;

    align-items: flex-start;
  }

  .offer-card-money {
    font-size: 22px;
  }

  .offer-detail-section {
    flex-direction: column;

    gap: 5px;
  }

  .offer-action-buttons {
    flex-direction: column;
  }
}
/* ===================================
   OFFER DETAILS CARD
=================================== */

.offer-details-card {
  background: #0f172a;

  border: 1px solid #334155;

  border-radius: 14px;

  padding: 20px;

  color: white;
}

.offer-details-header {
  font-size: 22px;

  font-weight: bold;

  margin-bottom: 20px;

  padding-bottom: 12px;

  border-bottom: 1px solid #334155;
}

/* 2 x 2 INFORMATION GRID */

.offer-details-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;
}

.offer-info-box {
  background: #111827;

  border: 1px solid #374151;

  border-radius: 10px;

  padding: 15px;
}

.offer-info-box span {
  display: block;

  color: #94a3b8;

  font-size: 13px;

  margin-bottom: 6px;
}

.offer-info-box strong {
  font-size: 17px;
}

.offer-money strong {
  color: #22c55e;
}

.offer-details-status {
  margin-top: 20px;

  padding: 12px;

  text-align: center;

  border-radius: 10px;

  font-weight: bold;
}

.offer-pending {
  background: #854d0e;

  color: #fef08a;
}

.offer-closed {
  background: #374151;
}

.offer-message-box {
  margin-top: 20px;

  background: #111827;

  border-radius: 10px;

  padding: 15px;

  border: 1px solid #374151;
}

.offer-message-box p {
  margin-top: 8px;

  color: #e5e7eb;
}

.offer-date {
  margin-top: 15px;

  color: #94a3b8;

  font-size: 13px;
}

@media (max-width: 700px) {
  .offer-details-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   OFFER STATUS COLORS
========================================= */

.offer-status {
  margin-top: 8px;

  padding: 6px 10px;

  border-radius: 8px;

  display: inline-block;

  font-size: 13px;

  font-weight: bold;
}

.offer-pending {
  background: #854d0e;

  color: #fde047;
}

.offer-accepted {
  background: #166534;

  color: #86efac;
}

.offer-rejected {
  background: #991b1b;

  color: #fecaca;
}

.offer-expired {
  background: #334155;

  color: #cbd5e1;
}

.offer-cancelled {
  background: #475569;

  color: white;
}
