input[type="checkbox"]:checked::after {
    content: "\2714"; /* Unicode for checkmark */
    position: absolute;
    color: white; /* Symbol Color */
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}