@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap";

/* src/styles/variables.scss */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-input-primary: #5136c4;
  --color-input-primary-hover: #4a2db0;
  --color-input-primary-active: #41299f;
  --theme-black: #261d20;
  --color-border-neutral: #c5c5c5;
  --color-input-neutral: #949494;
  --color-surface-bg: #f7f5f6;
  --color-surface-card: #ffffff;
  --status-warning: #cc3a3a;
  --font-body: "DM Sans", sans-serif;
  --font-heading: "DM Sans", sans-serif;
  --color-font-base: #42373b;
  --color-font-header: #261d20;
  --color-font-muted: #7f7378;
  --modal-title-color: var(--color-font-header);
  --modal-title-font-family: var(--font-heading);
  --modal-title-font-size: 1.25rem;
  --modal-title-font-style: normal;
  --modal-title-font-weight: 400;
  --modal-title-line-height: 1.75rem;
  --modal-description-color: var(--color-font-base);
  --modal-description-font-family: var(--font-body);
  --modal-description-font-size: var(--font-size-lg);
  --modal-description-font-style: normal;
  --modal-description-font-weight: 400;
  --modal-description-line-height: 1.25rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --header-height: 3.75rem;
  --app-main-padding-vertical: var(--space-md);
  --app-main-padding-horizontal: var(--space-lg);
  --header-bg: var(--color-surface-card);
  --footer-bg: var(--color-surface-card);
  --sidebar-bg: #261d20;
  --ai-agent-page-header-margin: 0.5rem;
  --ai-agent-page-top-margin: 1.5rem;
  --ai-agent-page-heading-line-height: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --border-thin: 1px;
  --border-thick: 2px;
  --color-border-muted: #e6e6e6;
  --border-standard: var(--border-thin) solid var(--color-border-muted);
  --font-size-sm: 0.75rem;
  --font-size-md: 0.875rem;
  --font-size-lg: 1rem;
  --control-size-sm: 2.25rem;
  --control-size-md: 2.5rem;
  --control-size-lg: 3rem;
}

/* src/styles/reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--color-gray-900);
  background-color: var(--color-white);
  line-height: 1.6;
}

/* src/styles/custom.scss */
.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-container {
  width: 100%;
  padding: 4rem 2rem 2rem 2rem;
}
.card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2.55rem;
  border: 0.8px solid var(--color-border-neutral);
  width: 33rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: 0 auto;
}
.card-header {
  color: var(--color-font-header);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5rem;
  margin: 0 0 var(--space-sm) 0;
}
.card-subheader {
  color: var(--color-font-base);
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0;
  flex: 1;
  margin-bottom: var(--space-md);
}
.card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.card-footer > app-button.align-start {
  margin-right: auto;
}
@media (max-width: 480px) {
  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .card-footer > app-button.align-start {
    margin-right: 0;
  }
  .card-footer > app-button,
  .card-footer > app-button .button {
    width: 100%;
  }
}
.card-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-alt-action {
  font-size: var(--font-size-md);
  margin: 0;
  margin-top: var(--space-sm);
}
a {
  color: var(--color-input-primary);
  text-decoration: underline;
  font-weight: 500;
}
a:hover {
  text-decoration: underline;
}
.error-message {
  color: #dc2626;
  font-size: var(--font-size-md);
}
svg-icon {
  line-height: normal;
}
.rotate-180 {
  transform: rotate(180deg);
}
.rotate-90 {
  transform: rotate(90deg);
}
.rotate-270 {
  transform: rotate(270deg);
}
.flip-vertical {
  transform: scaleY(-1);
}
.flip-horizontal {
  transform: scaleX(-1);
}
.page-content {
  padding: var(--app-main-padding-vertical) var(--app-main-padding-horizontal);
  height: 100%;
}
.overlay-host {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  z-index: 10;
}
.content-column,
.settings-content {
  position: relative;
  flex: 1;
  min-height: 0;
}
.overlay-host .cdk-overlay-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cdk-overlay-pane,
.cdk-overlay-backdrop {
  pointer-events: auto;
}
.app-main.app-drawer-scroll-lock {
  overflow: hidden;
}
.settings-content.app-drawer-scroll-lock {
  overflow: hidden;
}
.app-drawer-backdrop {
  background: rgba(0, 0, 0, 0.45);
}
.app-drawer-panel {
  height: 100%;
  background: #fff;
  box-shadow: -0.75rem 0 1.5rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: translateX(0);
  animation: app-drawer-slide-in 180ms ease-out;
  will-change: transform;
}
@keyframes app-drawer-slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .app-drawer-panel {
    animation: none;
  }
}
.app-main.app-modal-scroll-lock {
  overflow: hidden;
}
.settings-content.app-modal-scroll-lock {
  overflow: hidden;
}
.app-modal-backdrop {
  background: rgba(0, 0, 0, 0.45);
}
.app-modal-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5rem 3.75rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: scale(1);
  opacity: 1;
  animation: app-modal-pop-in 160ms ease-out;
  will-change: transform, opacity;
}
@keyframes app-modal-pop-in {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .app-modal-panel {
    animation: none;
  }
}

/* src/styles/toast.scss */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
.custom-toast {
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  font-family: "DM Sans", sans-serif;
  min-height: auto;
  background-color: transparent;
  background-image: none;
}
.custom-toast.toast-success {
  background-color: #e9f3ec;
  border-left: 2px solid #166534;
  color: #261d20;
}
.custom-toast.toast-success .toast-message {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-toast .toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 16px;
  flex-shrink: 0;
  color: #166534;
}
.custom-toast .toast-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
}
.custom-toast .toast-text {
  flex: 1;
  color: #261d20;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
.toast-container .ngx-toastr.custom-toast,
#toast-container > app-toast.custom-toast,
.toast-container > app-toast.custom-toast {
  display: block;
  width: 22.1875rem;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-position: initial;
  background-repeat: no-repeat;
  background-size: auto;
  box-sizing: border-box;
}
.toast-top-right {
  top: 24px;
  right: 24px;
}
.app-toast-host .toast-container {
  pointer-events: auto;
}
.app-toast-host #toast-container.toast-top-right,
.app-toast-host .toast-top-right {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  bottom: auto;
}
@keyframes toastFadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes toastFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}
.ngx-toastr {
  pointer-events: auto;
  animation: toastFadeIn 300ms ease-in-out;
}
.ngx-toastr.ng-leave {
  animation: toastFadeOut 1000ms ease-in-out;
}
.toast-top-right .ngx-toastr {
  animation: toastFadeIn 300ms ease-in-out;
}
#toast-container > div {
  opacity: 1;
  animation: toastFadeIn 300ms ease-in-out;
}
.toast-container > app-toast:not(:last-child),
#toast-container > app-toast:not(:last-child),
.toast-container > .ngx-toastr:not(:last-child),
#toast-container > .ngx-toastr:not(:last-child) {
  margin-bottom: 0.5rem;
}

/* src/app/shared/directives/tooltip/tooltip.directive.scss */
.app-tooltip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 0.1875rem;
  padding: var(--space-sm) var(--space-xs);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  z-index: 200;
  min-width: fit-content;
}
.app-tooltip-label {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 1.05rem;
  color: var(--theme-black);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.app-tooltip-arrow {
  position: absolute;
  width: 0.75rem;
  height: 0.5rem;
  background-color: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.app-tooltip-right .app-tooltip-arrow {
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
}
.app-tooltip-left .app-tooltip-arrow {
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.app-tooltip-bottom .app-tooltip-arrow {
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}
.app-tooltip-top .app-tooltip-arrow {
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.app-tooltip-panel {
  pointer-events: none;
}

/* src/styles.css */
html,
body {
  height: 100%;
}
body {
  margin: 0;
}

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