﻿@import url(''https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap'');

:root {
    --background: #09090b;
    --background-soft: #111114;
    --foreground: #fafafa;
    --muted-foreground: #a1a1aa;
    --card: #0f0f12;
    --card-foreground: #fafafa;
    --popover: #111114;
    --popover-foreground: #fafafa;
    --primary: #08f2a6;
    --primary-foreground: #04110b;
    --secondary: #18181b;
    --secondary-foreground: #fafafa;
    --accent: #18181b;
    --accent-foreground: #fafafa;
    --destructive: #ef4444;
    --border: #27272a;
    --input: #27272a;
    --ring: rgba(8, 242, 166, 0.35);
    --radius: 0.625rem;
    --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    height: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background: var(--background);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

select {
    color-scheme: dark;
    background-color: #1b1b1f;
    color: var(--foreground);
}

select option,
select optgroup {
    background-color: #1b1b1f;
    color: var(--foreground);
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

.validation-message {
    color: #ffb6b6;
    font-size: 0.92rem;
}

#blazor-error-ui {
    background: #18181b;
    color: #fafafa;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    display: none;
    padding: 0.85rem 1rem;
    position: fixed;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    float: right;
}
.provider-form-card .provider-input,
.provider-form-card input.provider-input,
.provider-form-card select.provider-input,
.provider-form-card textarea.provider-input {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.78rem 0.9rem;
    border-radius: calc(var(--radius) - 0.1rem);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--foreground);
}

.provider-form-card select.provider-input {
    appearance: auto;
}

.provider-form-card textarea.provider-textarea,
.provider-form-card textarea.provider-input {
    min-height: 7rem;
    resize: vertical;
}

.provider-form-card .provider-input:focus,
.provider-form-card input.provider-input:focus,
.provider-form-card select.provider-input:focus,
.provider-form-card textarea.provider-input:focus {
    outline: none;
    border-color: rgba(8, 242, 166, 0.35);
    box-shadow: 0 0 0 0.18rem rgba(8, 242, 166, 0.12);
}

.provider-form-card .provider-input[disabled],
.provider-form-card input.provider-input[disabled],
.provider-form-card select.provider-input[disabled],
.provider-form-card textarea.provider-input[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
}

.provider-form-card select.provider-input option {
    background-color: #1b1b1f;
    color: var(--foreground);
}

