/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@16.2.9_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!../../node_modules/.pnpm/next@16.2.9_react-dom@19.2.7_react@19.2.7__react@19.2.7/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./app/globals.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* NxFusion design system — global base + interaction polish.
   The app uses inline styles heavily; this layer adds the things inline styles
   can't (transitions, :hover/:focus, scrollbars) without fighting them — it leans
   on filter/box-shadow/outline so it never has to override an inline `background`. */

:root {
  --nxf-brand: #2563eb;
  --nxf-brand-ink: #1e293b;
  --nxf-ring: rgba(37, 99, 235, 0.35);
  --nxf-bg: #f6f8fb;
  --nxf-card: #ffffff;
  --nxf-border: #e6e8ee;
  --nxf-muted: #64748b;
  --nxf-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --nxf-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

::selection {
  background: var(--nxf-ring);
}

/* --- Buttons: smooth, lift on press, brightness on hover (works over inline bg) --- */
button {
  transition: filter 0.12s ease, transform 0.06s ease, box-shadow 0.12s ease, background 0.12s ease;
}
button:not(:disabled):hover {
  filter: brightness(0.96);
}
button:not(:disabled):active {
  transform: translateY(1px);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--nxf-brand);
  outline-offset: 2px;
}

/* --- Inputs: focus ring + hover border (outline/box-shadow aren't set inline) --- */
input,
select,
textarea {
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
  font-family: inherit;
}
input:hover,
select:hover,
textarea:hover {
  border-color: #c2c8d4;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--nxf-brand) !important;
  box-shadow: 0 0 0 3px var(--nxf-ring);
}

/* --- Tables: subtle row hover for scannability --- */
tbody tr {
  transition: background 0.1s ease;
}
tbody tr:hover td {
  background: #f8fafc;
}

/* --- Links --- */
a {
  transition: color 0.12s ease, background 0.12s ease;
}

/* --- Thin, unobtrusive scrollbars (esp. the sidebar nav) --- */
.nxf-scroll {
  scrollbar-width: thin;
  scrollbar-color: #334155 transparent;
}
.nxf-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.nxf-scroll::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 8px;
}
.nxf-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* --- Card hover lift (opt-in via .nxf-card) --- */
.nxf-card {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

/* --- Sidebar nav links --- */
.nxf-navlink:hover {
  background: #1e293b !important;
  color: #fff !important;
}

/* --- Fade-in for page content --- */
@keyframes nxfFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.nxf-main > * {
  animation: nxfFadeIn 0.18s ease;
}

