/* src/styles.css */
:root {
  --primary: #1A1A1A;
  --primary-light: rgba(26,26,26,0.08);
  --primary-dark: #000000;
  --primary-50: rgba(26,26,26,0.06);
  --primary-100: rgba(26,26,26,0.12);
  --secondary: #616161;
  --accent: #59AFD8;
  --accent-light: rgba(89, 175, 216, 0.12);
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;
  --accent-purple: #59afd8;
  --success: #10b981;
  --success-dark: #059669;
  --success-light: rgba(16,185,129,0.1);
  --primary-hover: #000000;
  --bg: #F5F0E8;
  --bg-card: #FAF7F3;
  --bg-sidebar: #F5F0E8;
  --bg-hover: #EFEBE4;
  --bg-main: #FAF7F3;
  --bg-secondary: #FAF7F3;
  --bg-tertiary: #EFEBE4;
  --bg-input: #FAF8F5;
  --border: #E5DDD4;
  --border-light: #EAE3DA;
  --border-color: #E5DDD4;
  --border-color-light: #EAE3DA;
  --text-primary: #1A1A1A;
  --text-secondary: #616161;
  --text-muted: #9E9690;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.03);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;
  --sidebar-width: 260px;
  --sidebar-collapsed-width: 72px;
  --transition: all 0.2s ease;
}
[data-theme=dark] {
  --primary: #f1f5f9;
  --primary-light: rgba(241,245,249,0.12);
  --primary-dark: #ffffff;
  --primary-50: rgba(241,245,249,0.08);
  --primary-100: rgba(241,245,249,0.15);
  --bg: #0f172a;
  --bg-card: #1e293b;
  --bg-sidebar: #0f172a;
  --bg-hover: #334155;
  --bg-main: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --bg-input: #1e293b;
  --border: #334155;
  --border-light: #1e293b;
  --border-color: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.6);
}
[data-theme=dark] ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
}
[data-theme=dark] ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
h1 {
  font-size: 1.75rem;
}
h2 {
  font-size: 1.375rem;
}
h3 {
  font-size: 1.125rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.9375rem;
}
h6 {
  font-size: 0.875rem;
}
p {
  color: var(--text-secondary);
  margin-bottom: 0;
}
img {
  max-width: 100%;
}
.material-icons-outlined {
  font-size: 20px;
  vertical-align: middle;
  line-height: 1;
}
.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.app-main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.app-content {
  padding: 32px 36px;
  flex: 1;
}
.app-shell.has-sidebar > .app-main-content {
  padding: 12px 12px 0px 12px;
}
.app-shell.has-sidebar > .app-main-content > *:not(router-outlet) {
  display: block;
  background: var(--bg-card);
  border-radius: 16px 16px 0px 0px;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.card-body {
  padding: 28px;
}
.card-header {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
  font-weight: 600;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.stat-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card__icon .material-icons-outlined {
  font-size: 22px;
}
.stat-card__icon--blue {
  background: rgba(89, 175, 216, 0.1);
  color: #59AFD8;
}
.stat-card__icon--amber {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.stat-card__icon--emerald {
  background: rgba(89, 175, 216, 0.1);
  color: #59AFD8;
}
.stat-card__icon--purple {
  background: rgba(126, 200, 227, 0.1);
  color: #7EC8E3;
}
.stat-card__icon--red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.stat-card__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.stat-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background: var(--bg-hover);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--border);
}
.btn-success {
  background: var(--primary);
  color: #fff;
}
.btn-success:hover:not(:disabled) {
  background: var(--primary-dark);
}
.btn-danger {
  background: var(--accent-red);
  color: #fff;
}
.btn-danger:hover:not(:disabled) {
  background: #dc2626;
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 12px;
}
.btn-ghost:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}
.btn-sm {
  padding: 6px 14px;
  font-size: 0.8125rem;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-control,
.form-select {
  width: 100%;
  padding: 11px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(89, 175, 216, 0.12);
}
.form-control::placeholder {
  color: var(--text-muted);
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-check-input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-switch .form-check-input {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--border);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.form-switch .form-check-input::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: #fff;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}
.form-switch .form-check-input:checked {
  background: var(--accent);
}
.form-switch .form-check-input:checked::before {
  left: 21px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 20px;
  line-height: 1.4;
}
.badge-primary {
  background: rgba(89, 175, 216, 0.1);
  color: #59afd8;
}
.badge-success {
  background: rgba(89, 175, 216, 0.1);
  color: #4A9AC4;
}
.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.badge-info {
  background: rgba(89, 175, 216, 0.1);
  color: #4A9AC4;
}
.badge-secondary {
  background: var(--bg-hover);
  color: var(--text-secondary);
}
.table-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-modern th {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.table-modern td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-primary);
  vertical-align: middle;
}
.table-modern tbody tr {
  transition: var(--transition);
  cursor: pointer;
}
.table-modern tbody tr:hover {
  background: var(--bg-hover);
}
.table-modern tbody tr:last-child td {
  border-bottom: none;
}
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-danger {
  background: rgba(239, 68, 68, 0.06);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.alert-success {
  background: rgba(89, 175, 216, 0.06);
  color: #4A9AC4;
  border: 1px solid rgba(89, 175, 216, 0.15);
}
.alert-info {
  background: rgba(89, 175, 216, 0.06);
  color: #4A9AC4;
  border: 1px solid rgba(89, 175, 216, 0.15);
}
.alert-warning {
  background: rgba(245, 158, 11, 0.06);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}
.spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .app-content {
    padding: 16px;
  }
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-sm {
  gap: 8px;
}
.gap-md {
  gap: 16px;
}
.gap-lg {
  gap: 24px;
}
.gap-xl {
  gap: 32px;
}
.mb-sm {
  margin-bottom: 8px;
}
.mb-md {
  margin-bottom: 16px;
}
.mb-lg {
  margin-bottom: 24px;
}
.mb-xl {
  margin-bottom: 32px;
}
.mt-md {
  margin-top: 16px;
}
.mt-lg {
  margin-top: 24px;
}
.text-sm {
  font-size: 0.8125rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-muted {
  color: var(--text-muted) !important;
}
.text-secondary {
  color: var(--text-secondary) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-success {
  color: var(--accent) !important;
}
.text-danger {
  color: var(--accent-red) !important;
}
.text-center {
  text-align: center;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.page-header {
  margin-bottom: 36px;
}
.page-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.page-header p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.22);
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state .material-icons-outlined {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.empty-state h3 {
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-hover);
  border-radius: var(--radius-md);
  padding: 4px;
}
.tab {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.tab:hover {
  color: var(--text-primary);
}
.tab.active {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.section-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F0E8;
  padding: 20px;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 48px 44px;
  width: 100%;
  max-width: 520px;
}
.auth-card h2 {
  text-align: center;
  margin-bottom: 8px;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.auth-card--wide {
  max-width: 520px;
}
.w-full {
  width: 100%;
}

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