﻿:root {
    /* Text */
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-text-contrast: #1a1a2e;
    /* Backgrounds */
    --color-bg: #0f0f1a;
    --color-bg-nav: #1a1a2e;
    --color-bg-card: #1e1e30;
    /* Borders */
    --color-border: #2e2e4a;
    --color-border-nav: #2a2a45;
    /* Primary */
    --color-primary: #eab308;
    --color-primary-hover: #ca9a04;
    --color-primary-text: #1a1a2e;
    --color-primary-white: #F4F4F0;
    /* Error */
    --color-error-bg: #2d1a1a;
    --color-error-border: #b91c1c;
    --color-error-text: #fca5a5;
    --color-error-elevated: #991b1b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.my-loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100vh;
    background-color: var(--color-bg);
}

.my-loading-screen img {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

.my-loading-screen p {
    color: var(--color-text-muted);
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-hover);
}

h1, h2, h3, h4 {
    color: var(--color-text);
    font-weight: 700;
}

#blazor-error-ui {
    display: none !important;
}

.full-width {
    width: 100%;
    height: 44px;
}

.full-height {
    height: 100%;
}
