/* Fix stacking context for repeater items */
[data-repeater-list] {
    position: static !important; /* Prevent stacking context */
}

[data-repeater-item] {
    position: relative !important;
    z-index: 1 !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 20px; /* Spacing between rows */
}

/* Force Select2 dropdowns above modals */
.select2-container--open {
    z-index: 99999 !important; /* Higher than modals */
}

/* Fix modal backdrop issues */
.modal-open .select2-container--open {
    z-index: 99999 !important;
}