/* src/styles.css */
:root {
  --bg-primary: #0f0f12;
  --bg-secondary: #18181c;
  --bg-card: #1e1e24;
  --text-primary: #f0f0f4;
  --text-secondary: #a0a0ac;
  --text-muted: #6b6b76;
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --border: #2a2a32;
  --success: #22c55e;
  --error: #ef4444;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
app-root:empty::before {
  content: "\417\430\433\440\443\437\43a\430\2026";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: var(--text-secondary);
}
app-root {
  display: block;
  min-height: 100vh;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
}
button,
.btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9375rem;
}
button:hover,
.btn:hover {
  background: var(--accent-hover);
}
input,
textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

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