@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";

/* src/styles/variables.css */
:root {
  --color-primary-50: hsl(234, 89%, 96%);
  --color-primary-100: hsl(234, 85%, 90%);
  --color-primary-200: hsl(234, 80%, 80%);
  --color-primary-300: hsl(234, 75%, 68%);
  --color-primary-400: hsl(234, 72%, 58%);
  --color-primary-500: hsl(234, 70%, 50%);
  --color-primary-600: hsl(234, 72%, 42%);
  --color-primary-700: hsl(234, 74%, 34%);
  --color-primary-800: hsl(234, 76%, 26%);
  --color-primary-900: hsl(234, 80%, 18%);
  --color-success-light: hsl(145, 60%, 94%);
  --color-success: hsl(145, 63%, 42%);
  --color-success-dark: hsl(145, 63%, 30%);
  --color-warning-light: hsl(38, 92%, 95%);
  --color-warning: hsl(38, 92%, 50%);
  --color-warning-dark: hsl(38, 92%, 35%);
  --color-danger-light: hsl(0, 86%, 95%);
  --color-danger: hsl(0, 72%, 51%);
  --color-danger-dark: hsl(0, 72%, 38%);
  --color-info-light: hsl(204, 86%, 94%);
  --color-info: hsl(204, 86%, 53%);
  --color-info-dark: hsl(204, 86%, 38%);
  --font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold:800;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-loose: 1.75;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --sidebar-width: 260px;
  --topbar-height: 64px;
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-drawer: 400;
  --z-modal: 500;
  --z-toast: 600;
}
:root,
[data-theme=light] {
  --bg-app: hsl(220, 20%, 97%);
  --bg-sidebar: hsl(234, 30%, 15%);
  --bg-surface: hsl(0, 0%, 100%);
  --bg-surface-2: hsl(220, 20%, 96%);
  --bg-surface-3: hsl(220, 18%, 92%);
  --bg-hover: hsl(220, 20%, 94%);
  --bg-input: hsl(0, 0%, 100%);
  --text-primary: hsl(220, 25%, 12%);
  --text-secondary: hsl(220, 15%, 40%);
  --text-tertiary: hsl(220, 12%, 60%);
  --text-disabled: hsl(220, 10%, 75%);
  --text-inverse: hsl(0, 0%, 100%);
  --text-on-sidebar:hsl(220, 30%, 85%);
  --text-on-sidebar-active: hsl(0, 0%, 100%);
  --border-color: hsl(220, 18%, 88%);
  --border-focus: hsl(234, 70%, 50%);
  --shadow-sm: 0 1px 3px hsla(220, 30%, 10%, 0.06), 0 1px 2px hsla(220, 30%, 10%, 0.04);
  --shadow-md: 0 4px 12px hsla(220, 30%, 10%, 0.08), 0 2px 4px hsla(220, 30%, 10%, 0.05);
  --shadow-lg: 0 10px 30px hsla(220, 30%, 10%, 0.12), 0 4px 8px hsla(220, 30%, 10%, 0.06);
  --shadow-xl: 0 20px 60px hsla(220, 30%, 10%, 0.16), 0 8px 16px hsla(220, 30%, 10%, 0.08);
  --sidebar-active-bg: hsla(234, 70%, 60%, 0.15);
  --sidebar-active-text: hsl(234, 85%, 75%);
  --sidebar-hover-bg: hsla(0, 0%, 100%, 0.06);
  --sidebar-text: hsl(220, 25%, 70%);
  --sidebar-icon: hsl(220, 20%, 55%);
  --color-primary: var(--color-primary-500);
  --color-primary-hover: var(--color-primary-600);
  --color-primary-active: var(--color-primary-700);
}
[data-theme=dark] {
  --bg-app: hsl(225, 25%, 8%);
  --bg-sidebar: hsl(225, 28%, 10%);
  --bg-surface: hsl(225, 22%, 13%);
  --bg-surface-2: hsl(225, 20%, 17%);
  --bg-surface-3: hsl(225, 18%, 22%);
  --bg-hover: hsl(225, 20%, 18%);
  --bg-input: hsl(225, 22%, 16%);
  --text-primary: hsl(220, 30%, 96%);
  --text-secondary: hsl(220, 20%, 70%);
  --text-tertiary: hsl(220, 15%, 50%);
  --text-disabled: hsl(220, 12%, 35%);
  --text-inverse: hsl(220, 25%, 12%);
  --text-on-sidebar:hsl(220, 20%, 70%);
  --text-on-sidebar-active: hsl(0, 0%, 100%);
  --border-color: hsl(225, 20%, 22%);
  --border-focus: hsl(234, 70%, 60%);
  --shadow-sm: 0 1px 3px hsla(0, 0%, 0%, 0.3), 0 1px 2px hsla(0, 0%, 0%, 0.2);
  --shadow-md: 0 4px 12px hsla(0, 0%, 0%, 0.4), 0 2px 4px hsla(0, 0%, 0%, 0.3);
  --shadow-lg: 0 10px 30px hsla(0, 0%, 0%, 0.5), 0 4px 8px hsla(0, 0%, 0%, 0.35);
  --shadow-xl: 0 20px 60px hsla(0, 0%, 0%, 0.6), 0 8px 16px hsla(0, 0%, 0%, 0.45);
  --sidebar-active-bg: hsla(234, 70%, 60%, 0.2);
  --sidebar-active-text: hsl(234, 85%, 75%);
  --sidebar-hover-bg: hsla(0, 0%, 100%, 0.05);
  --sidebar-text: hsl(220, 20%, 60%);
  --sidebar-icon: hsl(220, 15%, 45%);
  --color-primary: var(--color-primary-400);
  --color-primary-hover: var(--color-primary-300);
  --color-primary-active: var(--color-primary-200);
}

/* src/styles/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}
body {
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* src/styles/base.css */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  background-color: var(--bg-app);
  transition: background-color var(--transition-normal), color var(--transition-normal);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}
h1 {
  font-size: var(--font-size-3xl);
}
h2 {
  font-size: var(--font-size-2xl);
}
h3 {
  font-size: var(--font-size-xl);
}
h4 {
  font-size: var(--font-size-lg);
}
h5 {
  font-size: var(--font-size-md);
}
h6 {
  font-size: var(--font-size-base);
}
p {
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}
*:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
::selection {
  background: hsla(234, 70%, 50%, 0.2);
  color: var(--text-primary);
}
input,
textarea,
select {
  background-color: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-normal);
  width: 100%;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-tertiary);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px hsla(234, 70%, 50%, 0.12);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-md);
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    opacity var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn:active:not(:disabled) {
  transform: scale(0.98);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background-color: var(--color-primary);
  color: hsl(0, 0%, 100%);
}
.btn-primary:hover:not(:disabled) {
  background-color: var(--color-primary-hover);
  box-shadow: 0 4px 12px hsla(234, 70%, 50%, 0.4);
}
.btn-secondary {
  background-color: var(--bg-surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover:not(:disabled) {
  background-color: var(--bg-surface-3);
}
.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover:not(:disabled) {
  background-color: var(--bg-hover);
  color: var(--text-primary);
}
.btn-danger {
  background-color: var(--color-danger);
  color: hsl(0, 0%, 100%);
}
.btn-danger:hover:not(:disabled) {
  background-color: var(--color-danger-dark);
}
.btn-sm {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-xs);
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-md);
}
.card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}
.card-body {
  padding: var(--space-6);
}
.divider {
  height: 1px;
  background-color: var(--border-color);
  border: none;
  margin: var(--space-4) 0;
}
.page {
  padding: var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page {
    padding: var(--space-4);
  }
}

/* src/styles/utilities.css */
.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.flex-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-1 {
  gap: var(--space-1);
}
.gap-2 {
  gap: var(--space-2);
}
.gap-3 {
  gap: var(--space-3);
}
.gap-4 {
  gap: var(--space-4);
}
.gap-6 {
  gap: var(--space-6);
}
.gap-8 {
  gap: var(--space-8);
}
.p-4 {
  padding: var(--space-4);
}
.p-6 {
  padding: var(--space-6);
}
.p-8 {
  padding: var(--space-8);
}
.px-4 {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
.px-6 {
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}
.py-2 {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}
.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}
.mt-2 {
  margin-top: var(--space-2);
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mb-2 {
  margin-bottom: var(--space-2);
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-6 {
  margin-bottom: var(--space-6);
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.text-xs {
  font-size: var(--font-size-xs);
}
.text-sm {
  font-size: var(--font-size-sm);
}
.text-base {
  font-size: var(--font-size-base);
}
.text-lg {
  font-size: var(--font-size-lg);
}
.text-xl {
  font-size: var(--font-size-xl);
}
.text-2xl {
  font-size: var(--font-size-2xl);
}
.font-medium {
  font-weight: var(--font-weight-medium);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}
.text-primary {
  color: var(--text-primary);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-tertiary {
  color: var(--text-tertiary);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rounded-sm {
  border-radius: var(--radius-sm);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}
.rounded-full {
  border-radius: var(--radius-full);
}
.shadow-sm {
  box-shadow: var(--shadow-sm);
}
.shadow-md {
  box-shadow: var(--shadow-md);
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-fadeIn {
  animation: fadeIn var(--transition-normal) ease forwards;
}
.animate-slideInUp {
  animation: slideInUp var(--transition-normal) ease forwards;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* src/styles.css */

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