/*
 * 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.
 */

/* Typography */
.font-heading { font-family: "Montserrat", sans-serif; }
.font-body { font-family: "Raleway", sans-serif; }
.font-mono { font-family: "JetBrains Mono", monospace; }
.font-mono-tabular { font-family: "JetBrains Mono", monospace; font-variant-numeric: tabular-nums; }

/* Glass/Dark theme surfaces */
.glass-surface { background: rgba(255,255,255,0.06); }
.glass-surface-subtle { background: rgba(255,255,255,0.03); }
.border-glass { border: 1px solid rgba(255,255,255,0.06); }
.border-glass-subtle { border-bottom: 1px solid rgba(255,255,255,0.03); }
.border-glass-strong { border: 1px solid rgba(255,255,255,0.1); }

/* Common component patterns */
.accent-bar { margin-left: -1.5rem; margin-right: -1.5rem; margin-top: -1.5rem; }
.insight-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }

/* KPI card accent borders */
.kpi-accent-red { border-top: 3px solid #DC2227; }
.kpi-accent-blue { border-top: 3px solid #4e9efa; }
.kpi-accent-purple { border-top: 3px solid #a78bfa; }
.kpi-accent-green { border-top: 3px solid #3ecf8e; }
.kpi-accent-amber { border-top: 3px solid #f0b740; }

/* Filter toolbar */
.filter-toolbar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

/* Section divider with label */
.section-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.section-divider-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
}

/* Sidebar logo glow */
.logo-glow {
  box-shadow: 0 0 12px rgba(220,34,39,0.3);
}

/* Gragg red button */
.btn-gragg {
  background: #DC2227;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 0 12px rgba(220,34,39,0.3);
}
.btn-gragg:hover {
  box-shadow: 0 0 18px rgba(220,34,39,0.5);
}
