.boodschappenlijstje {
    list-style: none !important;
    padding-left: 0;
    margin: 20px 0;
}

.boodschappenlijstje li {
    list-style-type: none !important;
    font-size: 1.6em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.boodschappenlijstje input[type="checkbox"] {
    appearance: none;
    width: 36px;
    height: 36px;
    background-color: #fff3cd;
    border: 3px solid #ff9800;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-top: 2px; /* <<< Deze regel helpt bij het visueel centreren */
}

.boodschappenlijstje input[type="checkbox"]:checked {
    background-color: #4caf50;
    border-color: #388e3c;
}

.boodschappenlijstje input[type="checkbox"]:checked::after {
    content: '\2714';
    font-size: 26px;
    color: white;
    position: absolute;
    top: 1px;
    left: 6px;
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}