.app-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.app-loader-container.hide {
    opacity: 0;
    visibility: hidden;
}

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase.sk-primary .sk-chase-dot:before {
    background-color: #7367f0; /* Vuexy primary color */
}

/* Fade out effect */
.app-loader-container.hide {
    opacity: 0;
    visibility: hidden;
}

/* Additional loading text styling */
.loading-text {
    margin-top: 15px;
    font-size: 14px;
    color: #7367f0;
    font-weight: 500;
}
