#app {
    height: 100vh; /* Ensure the container takes up the full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the loading container fills the #app container */
    font-family: 'Nunito', sans-serif;
}

.loading-progress {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.loading-progress circle {
    fill: none;
    stroke-width: 8;
}

.loading-progress circle:nth-child(1) {
    stroke: #e0e0e0; /* Light gray background circle */
}

.loading-progress circle:nth-child(2) {
    stroke: #FF6F00; /* Bold orange accent color */
    stroke-linecap: round;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

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