/* Styling for the checkbox */
#custom-checkbox {
  margin-right: 10px;
    width: 40px;
    height: 30px;
    /*margin-bottom: 20px;*/
}

/* Styling for the label */
#custom-label {
  font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

/* Styling for the span */
.wc-proceed-to-checkout span {
      display: block;
    color: #666;
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;  
}

/* Styling for the error message */
.error-message {
  color: #ff0000;
  display: none;
  font-size: 14px;
}

/* Disable the checkout button initially */
.checkout-button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Enable the checkout button when checkbox is checked */
.checkout-button:not([disabled]) {
  background-color: #007bff;
  color: #fff;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .wc-proceed-to-checkout {
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
  }
 #custom-label {
    font-size: 15px;
} 
}

.button.checkout.wc-forward {
    display: none;
}