/* ===== FIXES FÜR MODALE DIALOGE UND DROPDOWNS ===== */
.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1050 !important;
}

.modal-dialog {
    z-index: 1051 !important;
}

.modal-content {
    background-color: #ffffff !important;
    opacity: 1 !important;
    color: #212529 !important;
}

/* Fix für Dropdown-Menüs */
.dropdown-menu {
    z-index: 1060 !important;
    max-height: none !important;
    overflow: visible !important;
    position: absolute !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    transform: none !important;
}

/* Verbesserte Sichtbarkeit von Dropdown-Menüs */
.dropdown-menu.show {
    display: block !important;
    z-index: 9999 !important;
}

/* Verbesserte Positionierung von Dropdowns */
.dropdown {
    position: relative !important;
}

/* Entferne unnötige Scrollleisten im Dropdown */
.dropdown-menu::-webkit-scrollbar {
    display: none !important;
}

.dropdown-menu {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* Spezifische Styles für Dropdown-Items in Tabellen */
.table .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem !important;
}

/* Aktionen-Spalte Dropdown-Optimierung */
.actions-column .dropdown-menu {
    min-width: 140px !important;
}
/* ===== ENDE DER FIXES ===== */