/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B3A4B 50%, #2E5D6C 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.loading-logo span {
    color: #00D9C0;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #00D9C0;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loading-text {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Blazor Error UI */
#blazor-error-ui {
    background: #EF4444;
    color: white;
    padding: 1rem 1.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: none;
    font-family: 'DM Sans', sans-serif;
}

#blazor-error-ui a {
    color: white;
    text-decoration: underline;
    margin-left: 1rem;
}
