.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 12px;
}

td,
th {
  border: 1px solid #ddd !important;
  border-collapse: collapse;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: black;
}

.shipstation-create-order h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 25px;
}

.form-table h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 25px;
  margin-bottom: 25px;
}

.form-table label {
  margin: 0px;
  font-size: 20px;
}

.order-item-row label {
  font-size: larger;
}

.order-item-row input {
  margin-top: 10px;
}

.order-item-row {
  padding: 20px !important;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background-color: #f9fafb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.shipstation-form {
  display: grid;
  gap: 10px;
  row-gap: 25px;
}

#order-items-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each order item */
.order-item-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns inside the item */
  gap: 20px 40px;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
}

/* Label + input */
.order-item-row p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Labels */
.order-item-row label {
  font-size: 18px;
  color: #1f2937;
}

/* Inputs */
.order-item-row input {
  margin-top: 5px;
  padding: 8px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

/* Remove button */
.order-item-row .remove-item {
  /*grid-column: 1 / -1; */
  margin-top: 10px;
  justify-self: start;
}

.remove-item {
  background-color: #f0f0f0 !important;
  color: #333 !important;
  border: 1px solid #ddd;
}

.button-primary {
  font-size: 18px !important;
  background-color: #0b5b85 !important;
  width: 100% !important;
  padding: 15px !important;
  border-radius: 5px !important;
  margin-top: 15px !important;
}

/* Grid for 2 columns of fields */
.shipstation-create-order table.form-table tbody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  /* vertical and horizontal spacing */
  padding: 20px;
}

/* Each row: label + input side-by-side */
.shipstation-create-order table.form-table tr {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Style the label column */
.shipstation-create-order table.form-table th {
  width: 35%;
  font-weight: 600;
  text-align: right;
  padding-right: 10px;
  font-size: 14px;
  color: #333;
}

/* Style the input container */
.shipstation-create-order table.form-table td {
  flex: 1;
}

/* Input styling */
.shipstation-create-order input,
.shipstation-create-order select,
.shipstation-create-order textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  transition: border 0.3s ease;
}

.shipstation-create-order input:focus,
.shipstation-create-order select:focus,
.shipstation-create-order textarea:focus {
  border-color: #3b82f6;
}

/* Remove those thin grey lines that appear like broken borders */
.shipstation-create-order table.form-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  /* space between rows */
}

.shipstation-create-order table.form-table th,
.shipstation-create-order table.form-table td {
  border: none !important;
}

/* Ensure 2 columns look clean */
.shipstation-create-order table.form-table tbody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}

/* Flex label + input horizontally */
.shipstation-create-order table.form-table tr {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Make label align right and trim padding */
.shipstation-create-order table.form-table th {
  width: 35%;
  text-align: right;
  font-weight: 500;
  font-size: 14px;
  padding: 0;
}

/* Full-width inputs */
.shipstation-create-order table.form-table td {
  flex: 1;
  padding: 0;
}

/* --- ORDER ITEMS Box --- */
.order-item-row {
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Inputs inside Order Item */
.order-item-row input {
  margin-top: 6px;
  margin-bottom: 16px;
}

/* Headings */
.shipstation-create-order h2,
.shipstation-create-order h3 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #1f2937;
}

/* Responsive stacking on mobile */
@media (max-width: 768px) {
  .shipstation-create-order table.form-table tbody {
    grid-template-columns: 1fr;
  }

  .shipstation-create-order table.form-table tr {
    flex-direction: column;
    align-items: stretch;
  }

  .shipstation-create-order table.form-table th {
    text-align: left;
    margin-bottom: 4px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 15px;
  }
}

.phone-donation-form {
  /* max-width: 800px; */
  margin: 0;
  font-family: Arial, sans-serif;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  padding-left: 80px;
  padding-right: 80px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-row.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 2.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group label .required {
  color: red;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Normalize all inputs */
.form-group input {
  background-color: #fff !important;
  color: #000 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border: 1px solid #ccc;
  box-shadow: none !important;
}

/* Remove Chrome autofill styles */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  transition: background-color 9999s ease-out;
}

.donation-options {
  margin: 30px 0;
}

.donation-options h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.radio-group {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
}

.radio-option label {
  font-weight: normal;
  margin: 0;
}

.btn {
  max-width: max-content;
  background-color: #5a9bc4;
  color: white;
  width: 100%;
  background-color: #0b5b85 !important;
  color: white;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 12px;
}

.btn:hover {
  background-color: #4a8bb4;
}

.btn-full-width {
  width: 100%;
  padding: 15px;
}

.btn-secondary {
  background-color: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

.btn-second {
  background-color: #f0f0f0 !important;
  color: #778294 !important;
  border: 1px solid #778294 !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  max-width: fit-content !important;
}

.drop-off-fields {
  margin-top: 20px;
}

.checkbox-group {
  margin: 15px 0;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
}

.quantity-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.quantity-btn {
  padding: 8px 15px;
  border: 1px solid #ddd;
  background-color: white;
  cursor: pointer;
  border-radius: 4px;
}

.quantity-btn:hover,
.quantity-btn.active {
  background-color: #5a9bc4;
  color: white;
  border-color: #5a9bc4;
}

.time-options {
  margin: 15px 0;
}

.time-option {
  margin: 8px 0;
}

.time-option input[type="radio"] {
  margin-right: 8px;
}

.progress-stepper {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.step-indicator .step-text {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
  color: #333;
}

.stepper-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}

.step-line {
  position: absolute;
  top: 17px;
  left: 60px;
  right: 40px;
  height: 2px;
  background-color: #dcdcdc;
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.step-item.active {
  color: #0b5b85;
}

.step-circle {
  color: #fff;
  width: 34px;
  height: 34px;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 15px;
}

.step-item.active .step-circle {
  background-color: #0b5b85;
  color: #fff;
}

/* Form Select Styling */
.form-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  box-sizing: border-box;
}

/* Pickup Address Styling */
.pickup-address-section {
  display: flex;
  gap: 15px;
}

.address-option {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  min-height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.address-option.selected {
  border-color: #4caf50;
  background-color: #f8fff8;
}

.address-option.add-new {
  border-style: dashed;
  color: #666;
  justify-content: center;
  min-width: 120px;
}

.address-option:hover {
  border-color: #999;
}

.address-content {
  font-size: 14px;
  line-height: 1.4;
}

.add-new-content {
  font-size: 14px;
  color: #666;
}

/* Donate Money Styling */
.donation-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.donation-icon {
  flex-shrink: 0;
}

.donation-text h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.donation-text p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.amount-selection {
  margin-bottom: 20px;
}

.amount-options {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.amount-btn {
  color: black;
  padding: 15px 20px;
  border: 2px solid #ddd;
  background-color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
  transition: all 0.3s ease;
}

.amount-btn:hover .amount-currency {
  border-color: #5a9bc4;
  color: white;
}

.amount-btn.selected {
  border-color: #5a9bc4;
  background-color: #f0f7ff;
  color: black;
}

.amount-currency {
  font-size: 12px;
  font-weight: 900;
  color: #666;
}

.other-amount {
  background-color: #f8f8f8;
}

.payment-methods {
  display: flex;
  gap: 45px;
  margin-bottom: 30px;
}

.payment-btn {
  padding: 15px 20px;
  border: 2px solid;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.paypal-btn {
  width: 100%;
  background-color: #ffc439;
  border-color: #ffc439;
  color: #333;
}

.paypal-btn:hover {
  background-color: #ffb800;
  border-color: #ffb800;
}

.card-btn {
  width: 100%;
  background-color: white;
  border-color: #5a9bc4;
  color: #5a9bc4;
}

.card-btn:hover {
  background-color: #5a9bc4;
  color: white;
}

/*donation css*/

.donation-options h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Make only the checked radio box green */
.radio-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  /* 10% looked off; use 4px for checkbox style */
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  display: inline-block;
}

/* Green checkmark style when selected */
.radio-option input[type="radio"]:checked {
  border-color: #00c800;
  background-color: #00c800 !important;
}

/* Optional: Add a white tick inside when selected */
.radio-option input[type="radio"]:checked::before {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -1px;
  left: 3px;
}

/* Label style */
.radio-option label {
  cursor: pointer;
  font-weight: 500;
  color: #333;
}

input[type="radio"]:checked + label {
  font-weight: 700;
}

/*radio*/

.radio-group input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  /* 10% looked off; use 4px for checkbox style */
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  display: inline-block;
}

.radio-group input[type="radio"]:checked {
  border-color: #00c800;
  background-color: #00c800 !important;
}

.radio-group input[type="radio"]:checked::before {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -1px;
  left: 3px;
}

/* Label style */

input[type="radio"]:checked + label {
  font-weight: 700;
}

/*time option*/

.time-options input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  /* 10% looked off; use 4px for checkbox style */
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  display: inline-block;
}

.time-options input[type="checkbox"]:checked {
  border-color: #00c800;
  background-color: #00c800 !important;
}

.time-options input[type="checkbox"]:checked::before {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -1px;
  left: 3px;
}

/*step---drop off location*/
body {
  padding-left: 80px;
  padding-right: 80px;
  font-family: Arial, sans-serif;
}

/* Form group spacing */
.drop-off-fields .form-group {
  margin-bottom: 50px;
}

/* Input fields */
.drop-off-fields input[type="text"],
.drop-off-fields input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Labels */
.drop-off-fields label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  color: #333;
}

/* Checkbox group container */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
}

/* Custom checkbox styles */
.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
  border-color: #00c800;
  background-color: #00c800;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "✓";
  color: #ffff;
  font-weight: bold;
  position: absolute;
  top: -4px;
  left: 1px;
  font-size: 14px;
}

/* Quantity input */
#boxes_requested {
  width: 100px;
  padding: 32px 14px;
  margin-bottom: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}

/* Quantity buttons layout (override) */
.quantity-buttons {
  display: inline !important;
}

/* Quantity button base */
.quantity-btn {
  width: 100px;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: #e0f2ff;
  border-color: #007acc;
}

/* Inline checkbox group (override) */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 50px;
  font-size: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Quantity buttons row */
.quantity-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quantity-buttons .quantity-btn {
  width: 7%;
  padding: 25px 16px;
  border: 1px solid #ccc;
  color: black;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

/*.quantity-buttons .quantity-btn:hover {*/
/*  background-color: #e6f4ff;*/
/*  border-color: #3399ff;*/
/*}*/

/* Time radio options group */
.time-options {
  display: flex;
  align-items: center;
  gap: 30px;
}

.time-option {
  display: flex;
  align-items: center;
  gap: 5px;
}

.time-option label {
  margin: 0;
}

/* Custom radio buttons */
.time-option input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-option input[type="radio"]:checked {
  border-color: #00c800;
  background-color: #00c800 !important;
}

.time-option input[type="radio"]:checked::after {
  content: "✓";
  color: #ffff;
  font-weight: bold;
  position: absolute;
  top: -3px;
  left: 3px;
  font-size: 14px;
}

/* Primary full-width button */
.btn-full-width {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: #247a99 !important;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-full-width:hover {
  background-color: #195f79;
}

/* Secondary back button */
.btn-secondary {
  background-color: #f0f0f0 !important;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
  color: #333;
}

/*-------step: devices donated--------------*/

/*step-----2----css*/
.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.checkbox-group label {
  margin-bottom: 0px;
}

.time-option {
  display: flex;
}

/*media query*/
@media (max-width: 1024px) {
  .form-step.active {
    padding-left: 40px;
    padding-right: 40px;
  }

  .form-row.four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .radio-group {
    gap: 16px;
  }

  .stepper-container {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .form-step.active {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row.four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }

  .pickup-address-section {
    flex-direction: column;
  }

  .donation-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stepper-container {
    align-items: center;
  }

  .step-item {
    align-items: center;
    margin-bottom: 12px;
  }

  .step-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /*.form-step.active {*/
  /*  padding-left: 15px;*/
  /*  padding-right: 15px;*/
  /*}*/

  .form-row.four-col {
    grid-template-columns: 1fr;
  }

  .amount-options {
    flex-direction: column;
  }

  .payment-methods {
    flex-direction: column;
  }

  .btn {
    font-size: 15px;
    padding: 12px 24px;
  }

  h2 {
    font-size: 22px !important;
  }

  .radio-option {
    font-size: 15px;
  }

  .radio-option input[type="radio"] {
    appearance: none;
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .drop-off-fields .form-group {
    margin-bottom: 30px;
  }

  /* Make checkbox and time option wrap nicely */

  .time-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .time-options {
    gap: 15px;
  }

  /* Make quantity buttons wrap nicely */
  .quantity-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .quantity-buttons .quantity-btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
    padding: 20px 10px;
  }

  #boxes_requested {
    width: 100%;
  }

  .btn-full-width {
    font-size: 15px;
    padding: 12px;
  }
}

/* Extra small screen adjustment */
@media (max-width: 480px) {
  @media (max-width: 480px) {
    .stepper-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 260px;
      margin: 0 auto;
      position: relative;
    }

    .step-line {
      position: absolute;
      top: 17px;
      /* vertically align with center of .step-circle */
      left: 17%;
      /* distance from the left circle */
      right: 17%;
      /* distance from the right circle */
      height: 2px;
      background-color: #dcdcdc;
      z-index: 0;
    }

    .step-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 50%;
    }

    .step-circle {
      width: 34px;
      height: 34px;
      font-size: 14px;
      margin-bottom: 6px;
    }

    .step-label {
      font-size: 12px;
      margin-top: 0;
      line-height: 1.2;
    }

    .step-indicator .step-text {
      font-size: 15px;
      margin-bottom: 15px;
    }
  }

  .quantity-buttons .quantity-btn {
    flex: 1 1 100%;
  }

  .donation-text h3 {
    margin-bottom: 10px;
  }

  .form-step.active {
    padding: 0px;
  }

  .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px !important;
  }

  .checkbox-group input[type="checkbox"]:checked::after {
    content: "✓";
    color: #ffff;
    font-weight: bold;
    position: absolute;
    top: -5px;
    left: -1px;
    font-size: 14px;
  }

  .payment-methods {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
  }

  .time-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px !important;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .quantity-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .quantity-buttons .quantity-btn {
    width: 100%;
  }

  .success-screen h2 {
    font-size: 18px !important;
  }

  .success-screen p {
    margin: 0 !important;
    width: 100% !important;
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .shipstation-form {
    display: block;
  }

  .order-item-row {
    display: block !important;
    padding: 5px !important;
  }

  .shipstation-create-order h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .shipstation-create-order h2 {
    font-size: 20px !important;
  }

  .form-field {
    margin-bottom: 15px;
    font-size: 18px !important;
  }

  .button-primary {
    margin-top: 10px !important;
    padding-bottom: 15px !important;
    height: 50px !important;
  }
}
