/* src/styles.scss */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1e293b;
  background-color: #f8fafc;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}
p {
  margin: 0;
}
a {
  color: #1a56db;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #1e40af;
}
:focus-visible {
  outline: 2px solid #1a56db;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
::selection {
  background: rgba(26, 86, 219, 0.2);
  color: #1e293b;
}
.highlight-ring {
  position: fixed !important;
  pointer-events: none !important;
  z-index: 10002 !important;
  border-radius: 10px !important;
  border: 4px solid #1a56db !important;
  background-color: rgba(26, 86, 219, 0.15) !important;
  animation: onboardingHighlightPulse 1.5s ease-in-out infinite !important;
  box-shadow:
    0 0 0 6px rgba(26, 86, 219, 0.4),
    0 0 25px rgba(26, 86, 219, 0.5),
    inset 0 0 15px rgba(26, 86, 219, 0.2) !important;
}
@media print {
  body.hse-printing aside.sidebar,
  body.hse-printing .topbar,
  body.hse-printing .no-print {
    display: none !important;
  }
  body.hse-printing .layout-container {
    display: block !important;
  }
  body.hse-printing .main-content {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }
}
@keyframes onboardingHighlightPulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(26, 86, 219, 0.4),
      0 0 25px rgba(26, 86, 219, 0.5),
      inset 0 0 15px rgba(26, 86, 219, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(26, 86, 219, 0.25),
      0 0 35px rgba(26, 86, 219, 0.4),
      inset 0 0 20px rgba(26, 86, 219, 0.15);
    transform: scale(1.03);
  }
}

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