/* Shared ERP Styles */
/* This file contains common styles that can be shared across all module pages */

:root {
  --primary: #485D75;
  --primary-light: #7C92AE;
  --primary-dark: #2C3541;
  --primary-darkest: #1D232E;
  --accent: #7C92AE;
  --accent-soft: rgba(124, 146, 174, 0.15);
  --bg: #E5E6E3;
  --card: #ffffff;
  --text: #1D232E;
  --text-muted: #5a6c6e;
  --border: #e2e8ea;
}

/* Common utility classes */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.bg-primary { background-color: var(--primary); }
.bg-card { background-color: var(--card); }

/* Print styles */
@media print {
  .back-link,
  .no-print {
    display: none !important;
  }
  
  section {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
