html {
  background: var(--color-base-900);
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
}
#app-root-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content-area {
  flex: 1;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.loading-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-base-900);
  opacity: 1;
  z-index: 9999;
  transition: opacity 0.3s ease-in;
  text-align: center;
  color: #000;
  line-height: 1.6;
}

.loading-overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-overlay__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-overlay__logo {
  animation-name: pulse;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 40px;
}

.loading-overlay__title {
  all: initial;
  font-family: monospace;
  color: #cfd4de;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.loading-overlay__subtext {
  all: initial;
  font-family: sans-serif;
  color: #616b82;
  font-weight: 500;
}

.loading-overlay__footer {
  position: absolute;
  bottom: 40px;
}

/* Intercom styles */
html.intercom-mobile-messenger-active,html.intercom-mobile-messenger-active>body,html.intercom-modal-open,#intercom-container-body{overflow:hidden!important;}html.intercom-mobile-messenger-active,html.intercom-mobile-messenger-active>body{position:static!important;transform:none!important;}html.intercom-mobile-messenger-active>body{height:0!important;margin:0!important;}iframe#intercom-frame{position:absolute!important;opacity:0!important;width:1px!important;height:1px!important;top:0!important;left:0!important;border:none!important;display:block!important;z-index:-1!important;;};;
