/* SuperPay Checkout Form Styles */
#wc-superpay-cc-form {
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
  margin-bottom: 20px;
}

#wc-superpay-cc-form .form-row {
  margin-bottom: 15px;
}

#wc-superpay-cc-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

#wc-superpay-cc-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

#wc-superpay-cc-form input:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 1px #2271b1;
}

#wc-superpay-cc-form .form-row-first,
#wc-superpay-cc-form .form-row-last {
  width: 48%;
  float: left;
}

#wc-superpay-cc-form .form-row-first {
  margin-right: 4%;
}

#wc-superpay-cc-form .clear {
  clear: both;
}

/* Saved Cards Styles */
.saved-cards {
  margin-bottom: 20px;
}

.saved-cards h3 {
  margin-bottom: 10px;
}

.saved-card {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}

.saved-card:hover {
  border-color: #2271b1;
}

.saved-card input[type="radio"] {
  margin-right: 10px;
}

/* 3DS Container Styles */
#superpay-3ds-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#superpay-3ds-container h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

#superpay-3ds-frame {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 4px;
  overflow: hidden;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  #wc-superpay-cc-form .form-row-first,
  #wc-superpay-cc-form .form-row-last {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  #superpay-3ds-container {
    margin: 20px;
    padding: 15px;
  }
}
