/* src/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}
:root {
  --primary-blue: #3b82f6;
  --primary-green: #10b981;
  --primary-orange: #f59e0b;
  --primary-purple: #8b5cf6;
  --primary-red: #ef4444;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}
.text-primary {
  color: var(--primary-blue) !important;
}
.text-success {
  color: var(--primary-green) !important;
}
.text-warning {
  color: var(--primary-orange) !important;
}
.text-danger {
  color: var(--primary-red) !important;
}
.text-purple {
  color: var(--primary-purple) !important;
}
.bg-primary {
  background-color: var(--primary-blue) !important;
}
.bg-success {
  background-color: var(--primary-green) !important;
}
.bg-warning {
  background-color: var(--primary-orange) !important;
}
.bg-danger {
  background-color: var(--primary-red) !important;
}
.bg-purple {
  background-color: var(--primary-purple) !important;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-slide-in {
  animation: slideIn 0.3s ease-out;
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
.btn {
  transition: all 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.card {
  transition: all 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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