.app-loader {
    pointer-events: none;
    position: fixed;
    inset: 0px;
    margin: 0px;
    height: 100%;
    max-height: none;
    width: 100%;
    max-width: none;
    padding: 0px;
    overscroll-behavior: contain;
    z-index: 999;
    color: inherit;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    overflow-y: hidden;
    background-color: rgb(0 0 0 / 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.app-loader .app-loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-loader .spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Animation to make the spinner rotate */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}