html {
    color-scheme: light;
}

body {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.10), transparent 26rem),
        linear-gradient(180deg, #f8f7f3 0%, #ffffff 42%, #f7f5ef 100%);
}

.surface {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(29, 38, 52, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.field {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #d8d4ca;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.62rem 0.75rem;
    font-size: 0.875rem;
    color: #1f2937;
    outline: none;
}

.field:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 650;
    color: #57534e;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 0.75rem;
    padding: 0.62rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 650;
    transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.20);
}

.btn-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #d8d4ca;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 650;
    background: #eef2ff;
    color: #1e40af;
}

.muted-table th {
    padding: 0.65rem 0.75rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0;
}

.muted-table td {
    border-top: 1px solid #e7e5dc;
    padding: 0.75rem;
    vertical-align: top;
    font-size: 0.875rem;
}
