@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f0f7ff;
}

.rounded-10 {
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .nav-link {
        display: flex;
        align-items: center;
        overflow: hidden;
        white-space: nowrap;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        max-width: 44px;
    }

    .nav-link:hover,
    .nav-link.active {
        max-width: 180px;
        padding-right: 16px;
    }

    .nav-link span {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        margin-left: 8px;
    }

    .nav-link:hover span,
    .nav-link.active span {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1023px) {
    .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
        gap: 12px;
    }
}

.nav-link.active {
    background-color: #dbeafe;
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.custom-shadow {
    box-shadow: 0 10px 15px -3px rgba(186, 230, 253, 0.3), 0 4px 6px -4px rgba(186, 230, 253, 0.3);
}

#main-content {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#mobile-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-drawer.closed {
    transform: translateX(-100%);
}

.data-table tr:hover {
    background-color: #f8fafc;
}