html, body {
    font-family: 'roboto', Helvetica, Arial, sans-serif;
}

@import "tailwindcss";
@import "../../bin/lumexui/theme.css";
@source "../../bin/lumexui/";



/* Modern Logo Loader Styles */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.loader-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(61, 158, 114, 0.15));
}

.loader-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid transparent;
    border-top-color: #3d9e72;
    border-right-color: #3d9e72;
    border-bottom-color: #1a4d3e;
    border-radius: 50%;
    animation: spinRing 3s linear infinite;
    box-shadow: 0 0 20px rgba(61, 158, 114, 0.2);
}

.loader-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    object-fit: contain;
    padding: 10px;
}

.loading-progress-text {
    margin-top: 30px;
    color: #8b949e;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: fadeInOut 2s ease-in-out infinite;
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

/* Ring Counter-Rotation Animation */
@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Fade In/Out Text Animation */
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Loader Styles */
@media (max-width: 768px) {
    .loader-wrapper {
        width: 90px;
        height: 90px;
    }

    .loader-ring {
        width: 110px;
        height: 110px;
    }

    .loading-progress-text {
        font-size: 12px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .loader-wrapper {
        width: 70px;
        height: 70px;
    }

    .loader-ring {
        width: 90px;
        height: 90px;
        border-width: 2px;
    }

    .loading-progress-text {
        font-size: 11px;
        margin-top: 20px;
    }
}

.nav-link {
    color: #5a6478;
}

    .nav-link:hover {
        background: var(--lumex-default);
        color: black;
    }

        .nav-link:hover .sidebar-icon {
            color: #c8d0e0;
        }

    .nav-link.nav-active {
        background: var(--lumex-default);
        color: black;
    }

        .nav-link.nav-active .sidebar-icon {
            color: #3d9e72;
        }
