input[type="checkbox"][name="sms_consent"] {
    width: 16px !important;
    height: 16px !important;
    border-radius: 2px !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    vertical-align: middle;
    margin-right: 6px;
}


/* Make the Brevo consent radio-like input smaller */
input[name="sms_consent"] {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #555 !important;
    border-radius: 50% !important; /* keep circle look */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
}

/* inner dot when checked */
input[name="sms_consent"]:checked::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eab308; /* Bulk31 yellow */
}


/* Target Brevo consent field inside Contact form */
.contact-form-group .form-check-input[name^="contact_custom_fields"] {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #555 !important;
    border-radius: 3px !important;           /* square instead of circle */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: #fff !important;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
}

/* show black tick when checked */
.contact-form-group .form-check-input[name^="contact_custom_fields"]:checked::before {
    content: "✓";
    position: absolute;
    top: -1px;
    left: 3px;
    font-size: 14px;
    color: #eab308; /* Bulk31 yellow tick */
    font-weight: bold;
}