/* ==========================================
   Contest Details Group
   ========================================== */
.contest-details-group.form-group-wrapper {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem 2.25rem;
}
.contest-details-group.form-group-wrapper .form-group-title {
  color: #374955;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.contest-details-group.form-group-wrapper .form-group-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* top full-width input */
  /* bottom row layout */
}
.contest-details-group.form-group-wrapper .form-group-inner .contest-name-field {
  flex: 1 1 100%;
}
.contest-details-group.form-group-wrapper .form-group-inner .contest-image-field {
  flex: 1 1 45%;
  min-width: 320px;
}
.contest-details-group.form-group-wrapper .form-group-inner .contest-image-field .upload-area {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contest-details-group.form-group-wrapper .form-group-inner .contest-desc-field {
  flex: 1 1 50%;
  min-width: 320px;
}
.contest-details-group.form-group-wrapper .form-group-inner .contest-desc-field textarea.form-control {
  min-height: 160px;
  resize: vertical;
}
.contest-details-group.form-group-wrapper label.form-label {
  font-weight: 600;
  color: #374955;
}
.contest-details-group.form-group-wrapper .form-control,
.contest-details-group.form-group-wrapper textarea.form-control {
  border-radius: 6px;
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  width: 100%;
}

/* ==========================================
   Contest Dates Group (fieldset version)
   ========================================== */
.contest-dates-group.form-group-duplicate {
  background: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  /* this replicates .form-group-inner */
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
  /* each .mb-3.row (field wrapper) should size like before */
}
.contest-dates-group.form-group-duplicate legend {
  font-weight: 700;
  color: #374955;
  margin-bottom: 1rem;
  width: 100%;
}
.contest-dates-group.form-group-duplicate > .mb-3.row {
  flex: 1 1 220px;
  max-width: 280px;
  margin: 0;
}
.contest-dates-group.form-group-duplicate .form-control[type=datetime-local] {
  font-size: 0.95rem;
  max-width: 100%;
  border-radius: 6px;
}
.contest-dates-group.form-group-duplicate label.form-label {
  margin-bottom: 0.35rem;
  font-weight: 600;
}

/* ==========================================
   Global spacing & consistency
   ========================================== */
.custom-multiform .form-control,
.custom-multiform textarea.form-control {
  border-radius: 6px;
}
.custom-multiform .form-group-wrapper + .form-group-wrapper {
  margin-top: 1.25rem;
}

/* ==========================================
   Entry Fields Group (fieldset version)
   ========================================== */
.entry-fields-group.form-group-duplicate {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  /* fieldset becomes the flex container */
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: flex-start;
  /* each checkbox item */
}
.entry-fields-group.form-group-duplicate legend {
  color: #374955;
  font-weight: 700;
  margin-bottom: 1rem;
  width: 100%;
}
.entry-fields-group.form-group-duplicate > .mb-3.row {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  min-width: 260px;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  /* hide duplicate top label */
  /* checkbox + label inline */
}
.entry-fields-group.form-group-duplicate > .mb-3.row .form-label {
  display: none;
}
.entry-fields-group.form-group-duplicate > .mb-3.row .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.entry-fields-group.form-group-duplicate > .mb-3.row .form-check .form-check-input {
  border: 2px solid #308478;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.entry-fields-group.form-group-duplicate > .mb-3.row .form-check .form-check-input:checked {
  background-color: #308478;
  border-color: #308478;
}
.entry-fields-group.form-group-duplicate > .mb-3.row .form-check .form-check-label {
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}
.entry-fields-group.form-group-duplicate > .mb-3.row .form-check .form-check-label:hover {
  color: #374955;
}

/* ==========================================
   Contest Details Group (fieldset version)
   ========================================== */
.contest-details-group.form-group-duplicate {
  background: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}
.contest-details-group.form-group-duplicate legend {
  font-weight: 700;
  color: #374955;
  margin-bottom: 1rem;
  width: 100%;
}
.contest-details-group.form-group-duplicate > .mb-3.row {
  margin-bottom: 1.25rem;
}
.contest-details-group.form-group-duplicate .form-control,
.contest-details-group.form-group-duplicate textarea.form-control {
  border-radius: 6px;
}
.contest-details-group.form-group-duplicate label.form-label {
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.custom-question-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rebate-thank-you {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
  padding: 6rem 1rem;
}
.rebate-thank-you h1 {
  color: #374955;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.rebate-thank-you p.lead {
  color: #374955;
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.rebate-thank-you p.text-muted {
  color: #6c757d;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.rebate-thank-you .btn-primary {
  background-color: #ff7e80;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.rebate-thank-you .btn-primary:hover {
  background-color: rgb(255, 85.2, 87.8325581395);
  transform: translateY(-2px);
}
.rebate-thank-you .btn-primary:active {
  background-color: rgb(255, 49.5, 52.6860465116);
  transform: translateY(0);
}
.rebate-thank-you::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/img/rebate-bg-texture.jpg") center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
@media (max-width: 768px) {
  .rebate-thank-you {
    padding: 4rem 1rem;
  }
  .rebate-thank-you h1 {
    font-size: 2rem;
  }
  .rebate-thank-you p.lead {
    font-size: 1.1rem;
  }
}

.rebate-status-banner {
  margin-top: 12px;
  margin-bottom: 18px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.rebate-status-banner.approved {
  background-color: #28a745;
}

.rebate-status-banner.denied {
  background-color: #dc3545;
}

.rebate-status-banner.pending {
  background-color: #6c757d;
}

.rebate-status-banner.manual {
  background-color: #007bff;
}

.rebate-status-banner.partial {
  background-color: #ff9800;
}

.decision-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.decision-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.decision-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.decision-modal-content {
  position: relative;
  background: #fff;
  padding: 28px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
}

.decision-modal-content h3 {
  margin: 0;
  color: #28a745;
}

.decision-modal-content h3:contains("Denied") {
  color: #dc3545;
}

.rebate-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}
.rebate-tabs .reason-col {
  display: none;
  white-space: pre-wrap;
  color: #dc3545;
  font-weight: 500;
}
.rebate-tabs .tab-btn {
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}
.rebate-tabs .tab-btn.active {
  background: #308478;
  border-color: #308478;
  color: #fff;
}
.rebate-tabs .tab-btn:hover {
  background: #80f9c0;
  color: #374955;
}/*# sourceMappingURL=generic_contests.css.map */