.table-responsive {
    overflow: visible !important;
}
.dropdown-menu {
    z-index: 9999;
}

/* Global Loader Styles */
#global-loader {
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease-in-out;
}

#global-loader .spinner-border {
    animation: spinner-border 0.75s linear infinite;
}

#global-loader .text-primary {
    color: #0d6efd !important;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Fade animation for loader */
#global-loader.d-none {
    opacity: 0;
    pointer-events: none;
}

#global-loader:not(.d-none) {
    opacity: 1;
}

.trix-content {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}
.trix-button-row {
    flex-wrap: wrap;
}
.trix-button-group {
    margin-bottom: 5px;
}