body {
    color: #1D3354;
    font-size: 0.875rem;
    background-color: #FAFAFA;
    font-family: 'Inter', sans-serif !important;
  
    @media (min-width: 1200px) {
        border-left: none !important;
        padding: 0 !important;
      }
}

.table {
    width: 100%;
    border-collapse: collapse;
  }
  .table td {
    padding: 10px;
  }
  

  @media (max-width: 768px) {
    .table td {
      display: block;
      width: 100%;
      text-align: center;
    }
    .table td:nth-child(2) {
      padding-top: 10px;
    }
  }
  @media (max-width: 480px) {
    .table td {
      font-size: 18px;
    }
  }

.help-icon {
  vertical-align:bottom;border-color:#1D3354 !important;border-width:1px !important;
}


.img-scale-down {
      width: 100%;
      height: 100%;
      object-fit: scale-down;
      overflow: hidden;
}
  
.center100 {
      width:100%;
      text-align: left;  
      display: flex; /* Create a flex container */
      justify-content: center; /* Center flex items horizontally */
      align-items: flex-start; /* Center flex items start (top), or use align-items: center etc */
}
@media (max-width: 768px) {
    .centered-button {
      /* Reset the vertical positioning if needed */
      top: auto;
      transform: none;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
      display: none !important;
    }
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

  
  .iwhite {color: #FFFFFF; }
  .lightblue {color: #D3EEFE; }
  .mediumblue { color: #9ED8DB;}
  .darkblue {color: #467599;}
  .darkestblue {color: #1D3354;}
  .lightgrey {color: #FAFAFA}
  .red {color: #D64045; }
  .lightblue-bg { background-color: #D3EEFE;  }
  .mediumblue-bg { background-color: #9ED8DB;  }
  .darkblue-bg { background-color: #467599;  }
  .darkestblue-bg { background-color: #1D3354;  }
  .red-bg { background-color: #D64045;  }
  .lightgrey-bg { background-color: #FAFAFA}
  .iwhite-bg {background-color: #FFFFFF; }
  
  .default-font-size {
    font-size: 16px;
  }
  
  /* Large font-size for desktop */
  @media screen and (min-width: 1024px) {
    .btn {
      font-size: 1.0rem !important;
    }
  }
  
  /* Medium font-size for iPad */
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .btn {
      font-size: 1.5rem !important; 
    }
  }
  
  /* Smallest font-size for iPhone */
  @media screen and (max-width: 767px) {
    .btn {
      font-size: 1.0rem !important;
    }
  }

  pre {
    white-space: pre-wrap; /* Wraps text */
    word-wrap: break-word; /* Ensures words can be broken */
    overflow-wrap: break-word; /* Similar to word-wrap, for better support */
    width: 100%; /* Ensures the pre tag does not exceed the width of its parent */
    background-color: #f4f4f4;  
    padding: 8px;  
    border-radius: 4px; /* Rounded corners */
    font-family: monospace;  
  }

  .image-text-container {
    width: 100%;
    height: 300px;
    display: block; /* Change to block instead of flex */
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 10px; 
}

.image-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%; /* 180px */
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: black; /* To see the boundaries */
}

.image-section img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
}

.text-section {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column; /* Change to column layout */
    justify-content: flex-start; /* Align items from the top */
    align-items: center;
    padding: 10px 0;
    box-sizing: border-box;
    overflow-y: auto; /* Add scrolling if content exceeds height */
}

.text-row {
    width: 90%; /* Slightly narrower than parent for visual spacing */
    margin-bottom: 15px; /* Space between rows */
}

/* --- Styles for Animated Chat Component --- */

/* Basic reset ensures more consistent box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

.animated-chat-container {
  /* Base font - may be overridden by specific message rule */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  max-width: 400px; /* Max width on larger screens */
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto; /* Centers component if its container allows */
}

/* --- Increased Specificity for Messages (Applies Mobile & Desktop) --- */
.animated-chat-container .chat-message {
  /* Set the desired font stack here */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 10px 15px;
  border-radius: 18px;
  max-width: 95%; /* Allow slightly wider bubbles */
  line-height: 1.4;
  word-wrap: break-word;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  font-size: 1rem; /* Base size */
  font-weight: normal;
  text-align: left;
}

/* Variants with increased specificity */
.animated-chat-container .chat-message.received {
  background-color: #E5E5EA;
  color: #000;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.animated-chat-container .chat-message.sent {
  background-color: #0B93F6;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.animated-chat-container .chat-message.hidden {
  opacity: 0;
  transform: translateY(15px);
}

.animated-chat-container .chat-message.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Specificity for Map Placeholder */
.animated-chat-container .chat-map-placeholder {
   /* Ensure map placeholder inherits or uses the correct font too */
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  height: 120px;
  background-color: #e0f2f7;
  border-radius: 10px;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  text-align: center;
}

.animated-chat-container .chat-map-placeholder::before {
  content: '🌀';
  margin-right: 8px;
  font-size: 20px;
}

/* Specificity for Map Image */
.animated-chat-container .chat-map-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px;
  margin-top: 5px;
}


/* --- Responsive Adjustments for Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
  .animated-chat-container {
      max-width: 95%; /* Use most of the screen width */
      padding: 15px; /* Reduce padding slightly */
      gap: 8px; /* Slightly reduce gap between messages */
  }

  /* Apply specificity here */
  .animated-chat-container .chat-message {
      padding: 8px 12px; /* Slightly smaller padding */
      max-width: 85%; /* Allow bubbles to be a bit wider relative to container */
      /* font-size: 0.95em; */ /* Mobile font size adjustment if needed */
  }

  /* Apply specificity here */
  .animated-chat-container .chat-map-placeholder {
      height: 100px; /* Make map placeholder slightly shorter */
      font-size: 13px; /* Slightly smaller text */
  }

   /* Apply specificity here */
   .animated-chat-container .chat-map-placeholder::before {
      font-size: 18px; /* Slightly smaller emoji */
   }
}

/* --- Explicit Font Override for Desktop (min-width: 481px) --- */
/* This targets screens *larger* than our mobile breakpoint */
@media (min-width: 481px) {
  .animated-chat-container .chat-message {
      /* Re-assert the desired font stack specifically for desktop */
      /* Use !important ONLY if absolutely necessary after testing this */
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      /* You could also adjust font-size for desktop here if needed */
      /* font-size: 1rem; */
  }

   /* Re-assert for placeholder if needed */
  .animated-chat-container .chat-map-placeholder {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
}

/* --- End Styles for Animated Chat Component --- */

/* Note: Remove the body styles below if adding this to an existing stylesheet */
/* Minimal body styles for demonstration - Optional */
/*
body {
  margin: 0;
  padding: 20px;
  background-color: #f0f0f0;
  font-family: sans-serif;
}
*/

.iphone {
  width: 390px;
  height: 844px;
  border: 16px solid #1D3354;
  border-radius: 50px;
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.2),
    inset 0 2px 8px rgba(0, 0, 0, 0.05);
  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.iphone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: #ccc;
  border-radius: 10px;
}

/* Homepage (index.html) moved inline styles */
:root {
  --white: #FFFFFF;
  --lightblue: #D3EEFF;
  --lightestblue: #f8fbff;
  --lightestpurple: #eef0ff;
  --lightpurple: #eef0ff;
  --mediumblue: #9EDBDB;
  --darkblue: #467599;
  --darkestblue: #1D3354;
  --lightgrey: #EEEEEE;
  --red: #D64045;
}

html {
  scroll-padding-top: 84px;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

body {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
label,
li {
  font-family: "Poppins", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-synthesis: none;
  font-weight: 300;
}

h1,
h2,
h3 {
  font-weight: 400;
}

.text-darkest {
  color: var(--darkestblue);
}

.text-dark {
  color: var(--darkblue);
}

.bg-light {
  background: linear-gradient(180deg, var(--lightblue) 0%, #ffffff 35%, var(--mediumblue) 100%);
}

.border-light {
  border-color: var(--lightgrey);
}

.card {
  background: #fff;
  border: 1px solid var(--lightgrey);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.btn-red {
  background: var(--red);
  color: #fff;
  font-weight: 400;
}

.section-chip {
  background: rgba(70, 117, 153, 0.09);
  color: var(--darkblue);
  border: 1px solid rgba(70, 117, 153, 0.2);
}

.usecase-card {
  position: relative;
}

.usecase-thumb {
  width: 62.5%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  padding: 6px;
  background: #eef0ff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.85);
  position: relative;
}

.usecase-img {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: #fff;
  border: 0.5px solid #e6e8f2;
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

section[id] {
  scroll-margin-top: 84px;
}

@media (max-width: 640px) {
  .usecase-thumb {
    width: 100%;
  }
}

#error_msg,
#leadFormBottomError {
  color: var(--red);
  display: none;
}

#user_msg,
#leadFormBottomSuccess {
  display: none;
}

.integrations-bg {
  background-image: url("https://imagedelivery.net/YFrrqfDHfRG8pCmKkJ5xTg/3551af48-874d-40b5-cc4b-68f571898900/w=40,h=80,fit=crop");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.integrations-mask {
  mask-image: radial-gradient(70% 70% at 50% 20%, black, transparent);
}

.header {
  background-color: #ffffff;
  color: #1D3354;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.chart {
  padding: 16px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spectrum {
  height: 30px;
  background: linear-gradient(to right, #00c853, #ffeb3b, #d50000);
  margin-top: 10px;
  border-radius: 6px;
  position: relative;
  width: 300px;
}

.spectrum-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #1D3354;
  width: 300px;
  padding-top: 4px;
}

.features {
  background-color: #ffffff;
  padding: 16px;
}

.feature-item {
  margin-bottom: 12px;
  text-align: left;
  font-size: 14px;
  color: #1D3354;
}

.feature-item::before {
  content: "\2713";
  color: #1D3354;
  margin-right: 8px;
}

.alert-button {
  background-color: #1D3354;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.hotel-image {
  height: 30%;
  width: 100%;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* carousel stuff */
.news-carousel {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background-color: #fff;
}

.carousel-container {
  display: flex;
  gap: 8px; /* spacing between cards */
  transition: transform 0.6s ease;
  padding-left: 1px; /* left margin */
}

.carousel-item {
  flex: 0 0 85%; /* show partial next card */
  position: relative;
  border-radius: 14px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
  background-color: #fff;
}

.carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.carousel-caption {
  position: relative;
  padding: 14px 18px 60px; /* extra bottom padding for button space */
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 180px; /* sets visual box for text + button */
  overflow: hidden;
}

.carousel-caption h3 {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #333;
  margin: 0;
}

.view-btn {
  background-color: #fff;
  color: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;

  /* anchor to bottom center inside caption */
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.view-btn:hover {
  background-color: #ff6600;
  color: #fff;
}


.carousel-control {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: none;
  color: white;
  font-size: 22px;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20; /* higher layer than content */
  pointer-events: auto;
}

.carousel-control.prev {
  left: 8px;
}

.carousel-control.next {
  right: 8px;
}

.carousel-control:hover {
  background: rgba(0,0,0,0.6);
}

/* Chat page (chat.html) moved inline styles */
#chatWindow .text-left,
#chatWindow .text-right,
#chatWindow .text-left *:not(.material-symbols-outlined),
#chatWindow .text-right *:not(.material-symbols-outlined) {
  font-family: "Poppins", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-weight: 300;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.chat-page textarea {
  font-family: "Poppins", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-weight: 300;
}

@media (max-width: 768px) {
  body.chat-page {
    min-height: 100dvh;
  }

  body.chat-page > main {
    min-height: 100dvh !important;
    height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  body.chat-page #appShell {
    min-height: calc(100dvh - 8px);
    height: calc(100dvh - 8px);
    display: flex;
    flex-direction: column;
  }

  body.chat-page #chatWindow {
    flex: 1 1 auto;
    min-height: 0;
  }

  body.chat-page .infoseek-composer-box {
    padding-bottom: max(6px, env(safe-area-inset-bottom));
  }
}

.message-user {
  background: #FAFAFA;
  color: var(--darkestblue);
}

.chat-handle-bold {
  font-weight: 700 !important;
}

.system-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 2px;
}

.suggestions {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  top: auto;
  z-index: 40;
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid var(--lightgrey);
  border-radius: 0.75rem;
  background: white;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: none;
}

.suggestion-item {
  cursor: pointer;
}

.suggestion-item:hover {
  background: #f5fbff;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(29, 51, 84, 0.18);
  border-top-color: rgba(29, 51, 84, 0.85);
  border-radius: 9999px;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  flex: 0 0 auto;
}

.spinner-sm {
  width: 12px;
  height: 12px;
  border-width: 2px;
}

.spinner-lg {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 9999px;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  flex: 0 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pinned-app-chip {
  border: 1px solid #d3eeff;
  background: #ffffff;
  color: var(--darkblue);
}

.pinned-app-chip:hover {
  background: #f4fbff;
}

.pinned-pill {
  position: relative;
}

.pinned-pill-label {
  cursor: pointer;
}

.pinned-hints-btn {
  cursor: pointer;
}

.pinned-hint-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 50;
  width: 260px;
  max-width: min(80vw, 320px);
  border: 1px solid var(--lightgrey);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--darkblue);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  padding: 8px;
}

.pinned-hint-empty {
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(29, 51, 84, 0.7);
}

.infoseek-composer-box {
  position: relative;
}

@media (max-width: 768px) {
  .infoseek-composer-box {
    padding-top: 0.35rem !important;
  }
}

.infoseek-input-wrap {
  position: relative;
}

.infoseek-input-wrap textarea {
  padding-left: 0.75rem;
  resize: none;
  height: 92px !important;
  min-height: 92px !important;
  max-height: 92px !important;
  overflow-y: auto;
}

.composer-plus-btn {
  position: absolute;
  right: 12px;
  top: -13px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #ef4444;
  background: #ef4444;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.25);
}

.composer-plus-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.drag-upload-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(70, 117, 153, 0.14);
  backdrop-filter: blur(1px);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.drag-upload-overlay.active {
  display: flex;
}

.drag-upload-overlay.rejected {
  background: rgba(220, 38, 38, 0.18);
}

.drag-upload-overlay .inner {
  border: 2px dashed var(--darkblue);
  background: #fff;
  color: var(--darkestblue);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
}

.drag-upload-overlay.rejected .inner {
  border-color: #dc2626;
  background: #fff5f5;
  color: #991b1b;
}

.catalog-init-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(29, 51, 84, 0.2);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-init-modal.hidden {
  display: none;
}

.catalog-init-modal-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dbe7f4;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--darkestblue);
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(29, 51, 84, 0.16);
}

.pinned-file-chip {
  border: 1px solid #cdd6e0;
  background: #fff;
  color: var(--darkblue);
}

.pinned-file-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--darkblue);
  border: 1px solid #d9e6f5;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.upload-status-banner {
  border: 1px solid #dbe7f4;
  background: #f7fbff;
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--darkestblue);
  font-size: 13px;
  font-weight: 400;
}

#appsQuickOpenBtn {
  right: 5%;
}

#appsProfileBtn {
  right: calc(5% + 68px);
}

#appsNewChatBtn {
  right: calc(5% + 34px);
}

#appShell {
  font-size: 75%;
}

body.widget-fs-active {
  overflow: hidden;
  background: #fff;
}

body.widget-fs-active main {
  max-width: none !important;
  min-height: 100dvh !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

body.widget-fs-active #appShell {
  position: fixed;
  inset: 0;
  z-index: 9999;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #fff;
  padding: 8px !important;
  max-width: none !important;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.widget-fs-active #chatWindow {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  padding: 0 !important;
  border-radius: 10px;
  background: #fff;
}

body.widget-fs-active #chatWindow > * {
  display: none !important;
}

body.widget-fs-active #chatWindow > .widget-fs-host {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}

body.widget-fs-active #chatWindow > .widget-fs-host > .widget-shell,
body.widget-fs-active #chatWindow > .widget-fs-host > .widget-shell > .widget-frame {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.widget-fs-active #chatWindow > .widget-fs-host iframe {
  flex: 1 1 auto !important;
  height: 100% !important;
  min-height: 0 !important;
  width: 100% !important;
  display: block !important;
}

body.widget-fs-active #commandsWrap,
body.widget-fs-active #hintsWrap,
body.widget-fs-active #statusText {
  display: none !important;
}

body.widget-fs-active #appsQuickOpenBtn {
  display: none !important;
}

body.widget-fs-active #appsProfileBtn {
  display: none !important;
}

body.widget-fs-active #appsNewChatBtn {
  display: none !important;
}

body.widget-fs-active #appsHomeBtn {
  display: none !important;
}

.widget-fs-loading {
  position: absolute;
  inset: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.widget-fs-loading .inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background: #fff;
  color: var(--darkblue);
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.preview-init-loading {
  position: absolute;
  inset: 0;
  z-index: 25;
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.preview-init-loading .inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background: #fff;
  color: var(--darkblue);
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
