@charset "UTF-8";

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #374151;
  background: #f3f4f6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
}
a {
  color: #4f46e5;
}
p {
  margin: 0 0 1rem;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.btn-tbl-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  color: #9ca3af;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.btn-tbl-action svg {
  display: block;
}
.btn-tbl-action:hover:not(:disabled) {
  background: #f3f4f6;
  color: #374151;
}
.btn-tbl-action:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.btn-tbl-action.danger:hover:not(:disabled) {
  color: #ef4444;
  background: #fee2e2;
}
.tbl-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
:root {
  --color-primary: #4f46e5;
  --color-primary-dark: #4338ca;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;
  --sidebar-width: 260px;
  --sidebar-collapsed-width: 72px;
  --topbar-height: 64px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
}

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