﻿body {
    font-family: 'Poppins', sans-serif;
}

.blazor-loader-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    /* CSS for your centered logo */
    /* Example styles: adjust these according to your logo's class or ID */
    max-width: 200px;
    margin: 0 auto; /* Centers the logo horizontally */
}

.loading-text {
    /* CSS for the loading text */
    color: #333;
    font-size: 24px;
    margin-top: 20px; /* Adjust spacing */
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Adding text shadow for readability */
}

.blazor-spinner {
    /* Your spinner's CSS styles */
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: gradientAnimation 2s linear infinite;
}

@keyframes gradientAnimation {
    0% { transform: rotate(0); border-top-color: #ff00cc; }
    100% { transform: rotate(360deg); border-top-color: #00ccff; }
}


