.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");
    }

.hc-notification-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.hc-notification {
    min-width: 240px;
    background: #fff;
    border-left: 6px solid #0078d4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 16px 40px 16px 16px;
    border-radius: 6px;
    position: relative;
    font-size: 15px;
    color: #222;
    animation: fadein 0.3s;
}

    .hc-notification.error {
        border-color: #e53935;
    }

    .hc-notification.warn {
        border-color: #fbc02d;
    }

    .hc-notification.infomation {
        border-color: #1976d2;
    }

    .hc-notification.message {
        border-color: #43a047;
    }

    .hc-notification .close-btn {
        position: absolute;
        right: 8px;
        top: 8px;
        background: none;
        border: none;
        font-size: 18px;
        color: #888;
        cursor: pointer;
    }
