/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0d1117;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.09);
  --border-focus: #3ecf8e;
  --text-primary: #ffffff;
  --text-secondary: #ffffff;
  --text-muted: #737880;
  --accent: #3ecf8e;
  --accent-hover: #2db87a;
  --accent-light: rgba(62,207,142,0.12);
  --green: #3ecf8e;
  --green-light: rgba(62,207,142,0.15);
  --amber: #f59e0b;
  --amber-light: rgba(245,158,11,0.15);
  --red: #ef4444;
  --red-light: rgba(239,68,68,0.12);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --font-sans:
    "DM Sans",
    system-ui,
    sans-serif;
  --font-serif:
    "DM Serif Display",
    Georgia,
    serif;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
}
html,
body {
  height: 100%;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(62, 207, 142, 0.25);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(62, 207, 142, 0.45);
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: var(--font-sans);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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