
input[type="checkbox"] {
    appearance: none;
    height: 20px;
    width: 20px;
    min-width: 20px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
    border-radius: 3px;
    
}

input[type="checkbox"]:after {
    font-family: "Material Symbols Outlined";
    content: '\e5ca';
    font-weight: 500;
    font-size: 22px;
    display: none;
    color: white;
}

input[type="checkbox"]:checked {
    display: inherit;
}

input[type="checkbox"]:checked::after {
    display: inherit;
}

input[type="checkbox"]:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}
