/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
*/

/* Base font family for Geist Mono */
:root { --font-ui: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
html, body { font-family: var(--font-ui); font-optical-sizing: auto; }

/* Staff-gated UI accents */
.staff-gated { background-color: #FFF4E5; }
body.staff-page { background-color: #FFF4E5; }

/* Global link styles - classic blue underlined */
a:not([class*="rounded"]):not([class*="btn"]):not([class*="button"]):not([class*="bg-"]) {
  color: #2563eb; /* blue-600 */
  text-decoration: underline;
}

a:not([class*="rounded"]):not([class*="btn"]):not([class*="button"]):not([class*="bg-"]):hover {
  color: #1d4ed8; /* blue-700 */
}
