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

/* src/styles.scss */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0c63c7;
  --primary-light: #38bdf8;
  --primary-pale: rgba(14, 165, 233, 0.08);
  --primary-tint: rgba(14, 165, 233, 0.04);
  --accent-teal: #06b6d4;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;
  --accent-green: #10b981;
  --accent-blue: #3b82f6;
  --accent-amber: #f59e0b;
  --body-bg: #f4f6fa;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #e2e8f0;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-purple: #0ea5e9;
  --shadow-xs: 0 1px 3px rgba(15,23,42,.03);
  --shadow-sm: 0 2px 6px rgba(15,23,42,.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06);
  --shadow-lg: 0 8px 24px rgba(15,23,42,.08);
  --shadow-card: 0 4px 20px rgba(12,99,199,.04), 0 2px 8px rgba(0,0,0,.02);
  --sidebar-bg: #ffffff;
  --sidebar-width: 256px;
  --sidebar-text: #475569;
  --sidebar-active-bg: rgba(14, 165, 233, 0.08);
  --sidebar-active-text: #0c63c7;
  --sidebar-border: #e2e8f0;
  --header-bg: #ffffff;
  --header-height: 60px;
  --font-main:
    "Outfit",
    "Inter",
    sans-serif;
  --font-mono:
    "SFMono-Regular",
    Consolas,
    monospace;
  --trans: all 0.2s ease-in-out;
  --trans-slow: all 0.3s ease-in-out;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 50px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
  background-color: var(--body-bg);
}
body {
  background-color: var(--body-bg);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0;
}
p {
  margin: 0;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--trans);
}
a:hover {
  color: var(--primary-light);
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--surface-2);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pale);
}
.glass-card,
.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--trans);
}
.glass-card:hover,
.card:hover {
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.25);
  transform: translateY(-2px);
}
.card-flat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--trans);
  border: 1px solid transparent;
  outline: none;
  line-height: 1.5;
  white-space: nowrap;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary) 100%);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 14px rgba(12, 99, 199, 0.4);
}
.btn-primary:hover {
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-light) 100%);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  transform: translateY(-1px);
  color: var(--text-white);
}
.btn-secondary {
  background: var(--surface-2);
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--surface-3);
  border-color: var(--primary-light);
  color: var(--text-primary);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary-pale);
  color: var(--text-white);
  border-color: var(--primary-light);
}
.btn-success {
  background:
    linear-gradient(
      135deg,
      #059669 0%,
      var(--accent-green) 100%);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.btn-success:hover {
  background: var(--accent-green);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
  color: var(--text-white);
}
.btn-danger {
  background:
    linear-gradient(
      135deg,
      #dc2626 0%,
      var(--accent-red) 100%);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
.btn-danger:hover {
  background: var(--accent-red);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
  color: var(--text-white);
}
.btn-accent {
  background: var(--primary-tint);
  color: var(--primary-light);
  border: 1px solid rgba(14, 165, 233, 0.25);
}
.btn-accent:hover {
  background: var(--primary);
  color: var(--text-white);
}
.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}
.btn-xs {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-info {
  background: rgba(14, 165, 233, 0.08);
  color: #0284c7;
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.badge-success {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge-warning {
  background: rgba(245, 158, 11, 0.08);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.badge-danger {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.badge-neutral {
  background: rgba(71, 85, 105, 0.08);
  color: #475569;
  border: 1px solid rgba(71, 85, 105, 0.2);
}
.badge-primary {
  background: var(--primary-pale);
  color: var(--primary-dark);
  border: 1px solid rgba(14, 165, 233, 0.2);
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control,
.form-select {
  width: 100%;
  padding: 0.6rem 0.875rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: var(--trans);
  appearance: none;
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--text-muted);
}
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  background: var(--surface-2);
}
.form-control:disabled,
.form-select:disabled {
  background: var(--surface-3);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.1rem;
  padding-right: 2.25rem;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--surface);
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.table th {
  background: var(--surface-2);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.875rem 1rem;
  border-bottom: 2px solid var(--border-light);
  white-space: nowrap;
}
.table td {
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-size: 0.875rem;
}
.table tbody tr {
  transition: var(--trans);
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table tbody tr:hover td {
  background: var(--surface-3);
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.gap-1 {
  gap: 0.375rem;
}
.gap-2 {
  gap: 0.75rem;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-muted {
  color: var(--text-muted) !important;
}
.text-primary-color {
  color: var(--primary) !important;
}
.text-success {
  color: var(--accent-green) !important;
}
.text-danger {
  color: var(--accent-red) !important;
}
.text-warning {
  color: var(--accent-orange) !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.w-100 {
  width: 100%;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.375rem;
}
.mb-2 {
  margin-bottom: 0.75rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mt-1 {
  margin-top: 0.375rem;
}
.mt-2 {
  margin-top: 0.75rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.active {
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
.status-dot.pending {
  background: var(--accent-amber);
}
.status-dot.inactive {
  background: var(--text-light);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulsePrimary {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tickRed {
  0%, 100% {
    color: var(--accent-red);
  }
  50% {
    color: #f87171;
  }
}
.animate-slide-in {
  animation: fadeInUp 0.3s ease-out both;
}
.animate-pulse-primary {
  animation: pulsePrimary 2s infinite;
}
.section-header {
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-header h3,
.section-header h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
}
.section-header .subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 16px;
  background:
    linear-gradient(
      to bottom,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  border-radius: 2px;
}
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  border: 1px solid;
  margin-bottom: 1rem;
}
.alert-info {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
  color: #0284c7;
}
.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: #059669;
}
.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  color: #b45309;
}
.alert-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}
.alert-primary {
  background: var(--primary-pale);
  border-color: rgba(14, 165, 233, 0.2);
  color: var(--primary-dark);
}
.divider {
  height: 1px;
  background: var(--border-light);
  margin: 1rem 0;
}
.text-gradient-zyno,
.text-gradient-blue,
.text-gradient-orange {
  background:
    linear-gradient(
      135deg,
      var(--primary-light) 0%,
      var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-gradient-zyno {
  background:
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary) 100%);
}
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  html {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

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