.navbar-nav .nav-link {
    transition: 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
    opacity: 0.85;
}

.dropdown-menu {
    border-radius: 12px;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(3px);
    z-index: 99999;
    animation: fadeIn .2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.table thead {
    background: linear-gradient(90deg, #4facfe, #00c6ff);
    color: white;
}

.search-box input {
    border-radius: 10px 0 0 10px !important;
}

.search-box button {
    border-radius: 0 10px 10px 0 !important;
}

.modal-content {
    border-radius: 16px;
}