﻿/*laoding progress*/
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

/*splash screen*/
/* Style for the splash screen container */
.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: #0052cc; /* Example blue background */
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Centering the splash content */
.splash-content {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* Splash logo */
.splash-logo {
    max-width: 200px; /* Scales for different resolutions */
    width: 20%; /* Responsiveness */
    min-width: 100px; /* Ensures it's not too small */
    margin-bottom: 20px;
}

/* Splash title */
.splash-title {
    font-size: 2.5rem; /* Scales for desktop */
    margin: 0;
}

/* Splash subtitle */
.splash-subtitle {
    font-size: 1.2rem; /* Responsive for smaller screens */
}
