/* General styles for the credit card form */
#wc-aj-cc-form {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: transparent;
    width: 100%;
    padding: 31px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-row select {
    width: calc(50% - 5px);
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}

.form-row input[type="password"] {
    width: calc(50% - 5px);
    display: inline-block;
    font-size: 14px;
}

.form-row-last {
    margin-left: 50%;
}

.required {
    color: red;
}

.clear {
    clear: both;
}

/* Styles for credit card icons */
.sv-wc-payment-gateway-card-icons {
    margin-top: 10px;
}

.sv-wc-payment-gateway-card-icons img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

/* Add more styles as needed */

/* Style for the dropdown container */
#ccexp_month {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  /* Style for dropdown options */
  #ccexp_month option {
    padding: 10px;
    font-size: 16px;
    color: #333;
  }
  
  /* Style for the dropdown arrow */
  #ccexp_month::-ms-expand {
    display: none;
  }
  
  #ccexp_month::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
  }
