.form-section:nth-child(odd) {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid #1d4c7e;
}

.form-section:nth-child(even) {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid #aed136;
}

.section-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #343a40;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-item input[type='checkbox'] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-item label {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.form-control,
.form-select {
  font-size: 0.9rem;
}

.input-group-text {
  background-color: #e9ecef;
  border-color: #ced4da;
}

.amount-inputs .row {
  align-items: center;
}

.date-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

@media (max-width: 768px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .date-range {
    grid-template-columns: 1fr;
  }
}

.sar-amount-field {
  text-align: right;
}
