html,
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    margin: 0;
}

.Playlytix-error {
    color: #b00020;
    font-weight: 500;
}

/* WASM host shell: _content/Teknexus.Blazor.Themes.Ubold/css/ubold-blazor-host.css */

/* Horizontal wordmark fills the trimmed asset; keep width proportional at UBold logo height. */
.sidenav-menu .logo-lg img,
.logo-topbar .logo-lg img {
    width: auto;
    max-width: min(100%, 11rem);
}

#app .playlytix-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background: #0d0d0d;
    color: #f5f5f5;
}

#app .playlytix-loading-logo {
    display: block;
    width: 5.5rem;
    height: auto;
    margin-bottom: 1.5rem;
}

#app .playlytix-loading-spinner {
    width: 2.25rem;
    height: 2.25rem;
    border: 0.25rem solid rgba(214, 246, 8, 0.2);
    border-top-color: #d6f608;
    border-radius: 50%;
    animation: playlytix-spin 0.85s linear infinite;
}

#app .playlytix-loading .loading-progress-text {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.02em;
}

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