/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #f0f0f0;
  --bg-input: #f5f5f5;
  --text-primary: #262626;
  --text-secondary: #8e8e8e;
  --text-muted: #c7c7c7;
  --accent: #ed4956;
  --accent-gradient:
    linear-gradient(
      135deg,
      #f58529,
      #dd2a7b,
      #8134af,
      #515bd4);
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.12);
  --red: #ed4956;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --sidebar-width: 240px;
}
html,
body {
  height: 100%;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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