.button-field {
    display: flex;
    gap: 10px;
    align-items: center;
}

.button-field form {
    margin: 0;
}

/* add-item als normale rij */
.item-add {
    background: #2ecc71;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.item-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.add-button {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 38px;
}