
/* Style the checkbox */
.woocommerce-checkout .form-row.terms {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
}

.woocommerce-checkout .form-row.terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #777;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
    transition: background-color 0.3s, border 0.3s;
}

.woocommerce-checkout .form-row.terms input[type="checkbox"]:checked {
    background-color: #0073e6;
    border-color: #0073e6;
}

.woocommerce-checkout .form-row.terms input[type="checkbox"]:focus {
    outline: none;
}

.woocommerce-checkout .form-row.terms label {
    font-weight: normal;
    margin: 0;
    color: #333;
}

/* Optional text customization */
.woocommerce-checkout .form-row.terms .optional-text {
    font-size: 12px;
    color: #999;
}
