.cuisine-checkbox-group {
    display: grid !important;
    grid-template-rows: repeat(4, auto); /* 4 rows */
    grid-auto-flow: row; /* fill rows first */
    column-gap: 25px;
    row-gap: 8px;
}

/* Custom checkbox wrapper */
.custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    user-select: none;
}

/* Hide the real checkbox */
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    margin: 0;
    border: none; /* Remove any default border */
}

/* Create custom box */
.custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: 0.2s;
}

/* When checked */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

/* Tick mark */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show tick when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

