@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --brand-primary: #0f172a;
    --brand-secondary: #0ea5e9;
    --brand-surface: #0b1224;
    --brand-card: #111827;
    --brand-border: rgba(255, 255, 255, 0.08);
}

html, body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body, #app {
    height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.12), transparent 25%),
        radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.12), transparent 25%),
        #0a0f1f;
    color: #e5e7eb;
}

#app {
    background-color: inherit;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.dashboard-hero {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    color: #f8fafc;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.dashboard-hero .stat-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: .5rem .75rem;
    color: #e0f2fe;
    font-weight: 600;
}

.panel-card {
    background: var(--brand-card);
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    color: #e5e7eb;
}

.panel-card .card-title {
    color: #f1f5f9;
}

.intelligence-pill {
    border: 1px solid rgba(14, 165, 233, 0.5);
    background: rgba(14, 165, 233, 0.08);
    border-radius: 12px;
    padding: .75rem;
}

.accent-soft {
    color: #38bdf8;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



[class*=btn-outline-] {
    --mdb-btn-padding-top: 0;
    --mdb-btn-padding-bottom: 0;
    --mdb-btn-padding-x: 6px;      
}
.link {
    cursor: pointer;
}

