@charset "UTF-8";

/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  background: #f7f8fa;
  color: #1f2937;
}
body.ai-cf-drawer-open {
  overflow: hidden;
}
.p-4 {
  padding: 1rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.me-3 {
  margin-inline-end: 0.75rem;
}
.fw-bold {
  font-weight: 700;
}
.text-muted {
  color: #6b7280;
}
.text-primary {
  color: #2563eb;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 10;
}
.bg-white {
  background: #fff;
}
.btn-close {
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.btn-close::before {
  content: "\d7";
}
.spinner-border {
  width: 1.75rem;
  height: 1.75rem;
  border: 0.2rem solid #cbd5e1;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: acf-spin 0.7s linear infinite;
}
@keyframes acf-spin {
  to {
    transform: rotate(360deg);
  }
}

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