/* Role Edit Modal - Fixed Footer Layout */

/* Container mit Flexbox-Layout */
.role-edit-modal {
    display: flex;
    flex-direction: column;
    height: 80vh;
    max-height: 80vh;
    max-width: 1000px;
    width: 100%;
}

/* Fixed Header (Alert ohne Button) */
.role-edit-modal-header {
    flex-shrink: 0;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E4E6EF;
    background-color: #fff;
}

.role-edit-modal-header .alert {
    margin-bottom: 0 !important;
}

/* Scrollable Body (Widgets) */
.role-edit-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
}

/* Fixed Footer (Button) */
.role-edit-modal-footer {
    flex-shrink: 0;
    padding: 1.25rem 2rem;
    border-top: 1px solid #E4E6EF;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

/* Optimierte Widget-Abstände */
.role-edit-modal-body > .shadow-sm {
    margin-bottom: 1.25rem !important;
}

.role-edit-modal-body > .shadow-sm:last-child {
    margin-bottom: 0 !important;
}

.role-edit-modal-body > .row {
    margin-bottom: 0;
}
