/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cgi-red: #cc0000;
  --cgi-dark: #1a1a1a;
  --cgi-grey: #f5f5f5;
  --cgi-blue: #0066cc;
  --accent: #00a651;
  --warn: #e67e22;
  --danger: #c0392b;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --border: #e0e0e0;
  --card-bg: #ffffff;
  --sidebar-w: 240px;
  --header-h: 45px;
}
body {
  font-family: "Inter", sans-serif;
  background: #f0f2f5;
  color: var(--text);
  font-size: 14px;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
}
a {
  color: var(--cgi-blue);
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
