@import "https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap";

/* projects/klab-admin-app/src/styles.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  min-height: 100%;
  line-height: 1.2;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  background: #F4F9FF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
.core-ui-tooltip {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  transform: translate(0, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  font-family: inherit;
  will-change: transform;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.core-ui-tooltip--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.core-ui-tooltip--card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.core-ui-tooltip__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.core-ui-tooltip__title {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: #224C92;
  text-align: center;
  margin: 0;
}
.core-ui-tooltip__description {
  font-size: 12px;
  color: #333333;
  line-height: 14px;
  font-weight: 300;
  text-align: center;
  margin: 0;
}
.core-ui-tooltip__highlight {
  display: flex;
  justify-content: center;
  background: #CDE3FE;
  border-radius: 6px;
  padding: 8px;
}
.core-ui-tooltip__highlight-text {
  font-size: 12px;
  font-weight: 400;
  color: #012F65;
  line-height: 14px;
  text-align: center;
}
.core-ui-tooltip--top::after {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 17px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #ffffff;
  z-index: 1;
}
.core-ui-tooltip--top::before {
  content: "";
  position: absolute;
  bottom: -19px;
  right: 17px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid rgba(0, 0, 0, 0.1);
  filter: blur(1px);
}
.core-ui-tooltip__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.core-ui-tooltip__text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.core-ui-tooltip__close {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  color: #616161;
}
.core-ui-tooltip__close:hover {
  background: rgba(0, 0, 0, 0.08);
}
.core-ui-tooltip__close svg {
  width: 16px;
  height: 16px;
  stroke: #64748b;
  transition: stroke 0.2s ease;
}
.core-ui-tooltip__close:hover svg {
  stroke: #1f2937;
}

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