/**
 * CAGP Discount Form Styling
 * Matches legacy site styling for discount code field
 */

.cagp-discount-table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #d3d7d9;
  background: #f8f9fa;
  border-radius: 4px;
}

.cagp-discount-table td {
  padding: 8px 12px;
  vertical-align: middle;
}

.cagp-discount-table .label {
  font-weight: 600;
  white-space: nowrap;
  width: 200px;
}

.cagp-discount-table input[type="text"] {
  width: 300px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}

.cagp-discount-table .cagp-apply-discount {
  background: #0071bc;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.cagp-discount-table .cagp-apply-discount:hover {
  background: #005a9c;
}

.cagp-discount-table .nowrap {
  white-space: nowrap;
}

/* Ensure discount table appears at top of form */
#Register .cagp-discount-table {
  order: -1;
  margin-top: 0;
}