/*
=================================================
 CATTLEMANIA AD SETUP PAGE
=================================================
*/

.ad-setup-page {
  width: 100%;
}

/* HEADER */

.ad-setup-page .page-header {
  margin-bottom: 25px;
}

.ad-setup-page .page-header h1 {
  font-size: 28px;

  color: #ffffff;

  margin-bottom: 8px;
}

.ad-setup-page .page-header p {
  color: #94a3b8;

  font-size: 15px;
}

/* GRID */

.ad-setup-page .content-grid {
  display: grid;

  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);

  gap: 20px;

  align-items: start;
}

.main-column,
.side-column {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

/* WIDGET CARDS */

.ad-setup-page .widget-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 24, 53, 0.96)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  padding: 22px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* WIDGET HEADER */

.ad-setup-page .widget-header {
  padding-bottom: 15px;

  margin-bottom: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ad-setup-page .widget-header h2 {
  color: white;

  font-size: 20px;
}

/* BODY */

.ad-setup-page .widget-body {
  color: #cbd5e1;
}

/* FORM */

.ad-setup-page label {
  display: block;

  margin-bottom: 8px;

  margin-top: 15px;

  color: #e5e7eb;

  font-size: 14px;
}

.ad-setup-page input,
.ad-setup-page select,
.ad-setup-page textarea {
  width: 100%;

  padding: 13px;

  background: #111827;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  color: white;
}

.ad-setup-page input:focus,
.ad-setup-page select:focus {
  outline: none;

  border-color: #3b82f6;
}

/* BUTTON */

.ad-setup-page button {
  width: 100%;

  padding: 14px;

  margin-top: 20px;

  background: #dc2626;

  border: none;

  border-radius: 12px;

  color: white;

  font-weight: bold;

  cursor: pointer;

  transition: 0.2s;
}

.ad-setup-page button:hover {
  background: #b91c1c;

  transform: translateY(-1px);
}

/* PRICE LIST */

.ad-setup-page .price-list {
  list-style: none;

  padding: 0;

  margin-top: 15px;
}

.ad-setup-page .price-list li {
  background: #111933;

  padding: 12px;

  margin-bottom: 8px;

  border-radius: 10px;

  color: #e5e7eb;
}

/* PREVIEW */

.ad-preview-card {
  background: #111933;

  padding: 18px;

  border-radius: 12px;
}

.ad-preview-card h3 {
  color: white;

  margin-bottom: 12px;
}

.ad-preview-card p {
  margin-bottom: 10px;

  color: #cbd5e1;
}

.ad-preview-card hr {
  border: none;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin: 15px 0;
}

/* ALERT */

.ad-setup-page .alert {
  background: #1f2937;

  padding: 15px;

  border-radius: 12px;

  margin-bottom: 15px;
}

/* MOBILE */

@media (max-width: 900px) {
  .ad-setup-page .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ad-setup-page .widget-card {
    padding: 16px;
  }
}
