input[type="checkbox"] {
    appearance: none;
    width: 25px;
    height: 25px;
    border: 3px solid #555;
    border-radius: 5px;
    display: grid;
    place-content: center;
    cursor: pointer;
    background-color: white;
    transition: all 120ms ease-in-out;    
}

input[type="checkbox" i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    padding: initial;
    border: initial;
}

.val-text {
    color: var(--gng-primary) !important;
}

@media (min-width: 650px) {
    .indexCol {
        width: 5% !important; 
    }
    .playerCol {
        width: 20% !important;
    }
    .emailCol {
        width: 25% !important;
    }
    .checkboxCol {
        width: 10% !important;
    }
}