/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--global-font-family);
}

@font-face {
  font-family: gothic720_bt_bold;
  src: url(https://floor.so/airroomfiles/gothik1/gothic720_bt_bold.ttf);
}
@font-face {
  font-family: gothic720_lt_bt_light;
  src: url(https://floor.so/airroomfiles/gothik1/gothic720_lt_bt_light.ttf);
}
@font-face {
  font-family: gothic725_bd_bt_bold;
  src: url(https://floor.so/airroomfiles/gothik1/gothic725_bd_bt_bold.ttf);
}

@font-face {
  font-family: gothicno13_bt;
  src: url(https://floor.so/airroomfiles/gothicno13_bt/gothicno13_bt.ttf);
}

@font-face {
  font-family: gothic720_bt_roman;
  src: url(https://floor.so/airroomfiles/gothicno13_bt/gothic720_bt_roman.ttf);
}

.fa-light:hover {
  color: black !important;
}

.fa-light {
  color: #6B6B6B !important;
}

.fa_label:hover {
  color: black !important;
}

.fa_label {
  color: #6B6B6B !important;
}

#fed-startup-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: black;
  z-index: 100;
}

.container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px); /* Add this line to set the height of the container */
  position: relative;
}

body {
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: var(--global-font-family);
  font-size: 12px;
  overflow: hidden;
}

/* LEFT PANEL */
.left-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background-color: rgb(100,100,100);
  display: none;
  flex-direction: column;
}

.right-panel {
  position: fixed;
  top: 0;
  width: 100%;
  right: 0;
  height: 100%;
  background-color: white;/*rgba(200, 40, 40, 0.2); /*var(--bg-color);*/
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.main-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  height: 100%;
  position: relative; /* Add this line */
}

.home-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.main-containers {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  height: 88%;
  padding: 10px;
  position: relative; /* Add this line */
}

.main-containers-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  height: 10%;
  padding: 10px;
  position: relative; /* Add this line */
}

.main-floor-header {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.left-header {
  display: flex;
  align-items: center;
}

.home-button {
  display: flex;
  align-items: center;
}

#homeButton {
  /* Add any additional styles for the logout button */
  background-color: #007BFF;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}

#homeButton:hover {
  background-color: #73a4da;
  color: black;
}


.main-federation-header {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-chat-container {
  background-color: transparent;
  overflow: hidden;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  margin-left: 20px;
  border-radius: 10px;
}

.pcc-banner {
  background-color: red;
  width: 100%;
  height: 100%;
}

.chat-container {
  /*background-color: #fff;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  right: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 20%;*/
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 49%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
}

.cc-floor-creation-gif {
  height: 100%; /* Adjust the height as needed */
  width: 100%;
  position: relative;
  display: none;
  background-color: transparent;
  align-items: center;
  justify-content: center;
}

.cc-banner {
  background-image: url('../images/ccBanner_1.jpg'); /* Replace with the path to your background image */
  background-size: contain; /* This will make the background image cover the entire div */
  background-position: center; /* This will center the background image */
  background-repeat: no-repeat; /* This will prevent the background image from repeating */
  background-color: var(--bg-container-color);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  height: 100%; /* Adjust the height as needed */
  width: 100%;
  position: relative;
  display: none;
}

#ccBannerBtn {
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 1rem;
  padding: -0.75rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  align-self: center;
  bottom: 10px;
  right: 10px;
  display: block;
  position: absolute;
}

.chat-box-container {
  background-color: white;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  display: flex;
}

.chat-header {
  /*background-color: #1877F2;
  color: #fff;
  font-size: 24px;
  padding: 15px;
  text-align: center;
  width: 100%;
  text-align: center;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 5px ;
  
  border-bottom: 1px solid #ccc;
  height: 8%; /* Add this line */
}

#clearChatBtn {
  background-color: transparent;
  border: none;
  color: gray;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  cursor: pointer;
}

#clearChatBtn:hover {
  /*background-color: #45a049;*/
  color: var(--text-color);
}

clearButton {
  font-size: 12px;
  background-color: var(--bg-container-color);
  color: #1877F2;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.chatbox {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  width: 100%;
  height: 65%;
}

.message {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: nowrap;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.message.show {
  opacity: 1;
}

/*.user-message {
  align-self: flex-end;
  justify-content: flex-end;
}*/

.user-message {
  text-align: left;
  border-radius: 5px;
  display: flex; /* Add this */
  align-items: center; /* Add this */
  margin-bottom: 10px; /* Add this */
}

.bot-message {
  text-align: left;
  border-radius: 5px;
  display: flex; /* Add this */
  align-items: center; /* Add this */
  margin-bottom: 10px; /* Add this */
}

.user-message p {
  background-color: rgba(24, 119, 242, 0.26);
  color: var(--text-color);
}

.bot-message p {
  background-color: rgba(237, 153, 153, 0.26);
  color: var(--text-color);
}

.message p {
  border-radius: 15px;
  padding: 10px 15px;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.5;
}

.input-container {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #f5f5f5;
  height: 20%;
}

.chat-input-container {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: transparent;
  height: 20%;
}

.input-wrapper {
  display: flex;
  width: 100%;
  background-color: #ddd;
}

.chat-input-wrapper {
  display: flex;
  width: 100%;
  background-color: transparent;
}

.chat-input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 16px;
  color: var(--text-color);
  border: 1px solid #d9d9d9;
}

input[type="text"] {
  flex: 1;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 16px;
  background-color: #F7F9F9;
  color: var(--text-color);
}

sendButton {
  font-size: 16px;
  background-color: #1877F2;
  color: white;
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 4px;
}

button {
  font-size: 12px;
  background-color: #1877F2;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
}

.button-container,
.topic-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 50px;
}

.confirm-button,
.topic {
  background-color: transparent;
  color: var(--text-color);
  padding: 5px;
  border-radius: 5px;
  border-width: 1px;
  cursor: pointer;
  border-color: gray;
  transition: background-color 0.2s;
}

.confirm-button:hover,
.topic:hover {
  color: white;
  border-color: #1565C0;
  background-color: #1565C0;
}

.chatbotProfileImage {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-right: 10px;
  vertical-align: middle;
}

.message p {
  display: inline-block;
  vertical-align: middle;
}


.half-panel {
  flex: 1;
  overflow-y: auto;
 }

/* For Firefox */
* {
  scrollbar-width: none; /* Adjust the width of the scrollbar */
 /* scrollbar-color: #9E9E9E #ffffff;*/
  scrollbar-color: var(--bg-input-box-color) var(--bg-color); /* Adjust the thumb and track colors */
}

/* For Chrome and Safari */
::-webkit-scrollbar {
  width: 0px; /* Adjust the width of the scrollbar */
  height: 4px; /* Adjust the height of the scrollbar */
}

::-webkit-scrollbar-track {
  background-color: transparent; /* Adjust the track color */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 123, 255, 0.349); /* Adjust the thumb color */
  border-radius: 2px; /* Adjust the border-radius of the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: lightblue; /* Adjust the thumb color on hover */
}

.half-panel h2 {
  margin: 0 0 -3px;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  color: white;
}

#topHalf {
  border-bottom: 2px solid #d1d1d1;
  flex: 0 0 70%;
  margin-top: 10px;
  padding-bottom: 20px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-logo-container {
  display: flex;
  align-items: center;
}

.userProfile {
  width: 24px; /* Adjust the width as needed */
  height: 24px; /* Adjust the height as needed */
  margin-left: 10px;
  margin-right: 0.8rem;
}

.text-wrapper {
  margin-top: 60px; /* Add bottom margin to the list-wrapper */
  margin-bottom: -50px;
  margin-left: 10px;
  width: 70%;
  overflow: none;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
  height: calc(100% - 24px); /* Adjust the height by subtracting the h2 height and the desired margin */
}

.gif-container {
  display: flex;
  justify-content: right;
}

.no-floors-gif {
  max-width: 80%; /* Ensure the GIF doesn't overflow its container */
}

.gif-container-toggle {
  display: none;
}

.list-wrapper {
  margin-bottom: 10px; /* Add bottom margin to the list-wrapper */
  overflow-y: auto;
  height: calc(100% - 24px); /* Adjust the height by subtracting the h2 height and the desired margin */
}

#topPanel_dataList {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  color: white
}

#topPanel_dataList li {
  padding: 10px;
  border-bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

#topPanel_dataList li span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#bottomHalf {
  border-bottom: 1px solid #969696;
  margin-top: 6px;
}

#bottomHalf h2::after {
  content: "";
  display: block;
  width: 24px; /* Adjust the logo width */
  height: 24px; /* Adjust the logo height */
  background-image: url("../images/logo-bottom.png"); /* Replace "logo-bottom.png" with your bottom logo file path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;  
}

#bottomPanel_dataList {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: white
}

#bottomPanel_dataList li {
  padding: 10px;
  border-bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: var(--bg-footer-color);
  height: 30px;
  flex-direction: column;
}
.footer-left {
  font-size: 12px;
  color: var(--text-color);
}

.footer-right {
  position: absolute;
  right: 10px;
  font-size: 12px;
  color: var(--text-color);
}

/*
.search-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; 
}

.search-input {
  width: 100%;
  padding: 6px 30px 6px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  cursor: pointer;
}*/

/* MENU ICON FOR MOBILE BROWSER */

/* General styles for the menu icon */
.menu-icon {
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hide the menu icon by default */
  position: fixed;
  top: 10px;
  left: 4px;
  z-index: 1000;
}


/* Search Result Container */
.floor-search-container {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: auto;
  position: relative;
  justify-content: end;
  margin-left: 2%;
}

.search-wrapper {
  width: 90%;
  height: auto;
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  gap: 20px;
}

.search-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.search-text-container {
  position: relative;
  width: 90%;
}

.search-input {
  width: 100%;
  padding: 10px 30px 10px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 20px !important;
  font-size: 14px;
  outline: none;
}

.search-close-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  cursor: pointer;
  display: block;
}

.results-container {
  display: block;
  background-color: transparent;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  z-index: 1;
  box-sizing: border-box;
  display: none;
  height: 100vh;
  overflow-y: scroll; /* Enable vertical scrolling if the content overflows the container */
  flex-direction: row;
  justify-content: space-between;
}


.results-column {
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
  width: 49%;
}

.results-column-title {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-weight: bold;
  font-size: 2.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.results-column-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.result-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  padding: 4px;
  
}

.result-logo {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}

.result-title {
  font-size: 14px;
}


#tour-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
}

/* CENTER PANEL */

.centered-panel {
  display: block;
  overflow-y: hidden;
}

.big-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.small-text {
  font-size: 10px;
  font-weight: normal;
  color: white;
}


/* Tabs for left panel on mobile devices*/

.tab {
  display: none;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  background-color: #e0e0e0;
  border-bottom: 1px solid #ccc;
}

.tab.active {
  background-color: #fff;
  border-bottom: none;
}

/*
.flash-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f44336;
  color: white;
  padding: 16px;
  border-radius: 5px;
  z-index: 1000;
  transition: opacity 0.5s;
}*/

.flash-blue-message,
.flash-green-message,
.flash-message {
  visibility: hidden; 
  min-width: 250px; 
  margin-left: -25%;
  color: #fff; 
  text-align: center; 
  border-radius: 2px; 
  padding: 16px; 
  position: absolute; 
  z-index: 999999; 
  left: 50%; 
  bottom: 30px; 
  font-size: 16px;
  background-color: #f44336;
  border-radius: 5px;
}

.flash-green-message {
  background-color: rgba(2, 101, 2, 0.95);
}

.flash-blue-message {
  background-color: rgba(39, 53, 163, 0.95);
}

.flash-blue-message.show,
.flash-green-message.show,
.flash-message.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.main-about-container {
  height: 40px; 
  width: 40%; 
  background-color: white;
  display: block;
  padding: 6px;
  text-align: center;
  line-height: 12px;

  border-radius: 0px;
  padding: 6px;
  height: 40px;
  position: fixed;
  bottom: 2px;
  z-index: 1000; /* Any high value to ensure footer is on top */
  transition: bottom 0.3s ease-in-out; /* Transition for smooth animation */
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  right: 0;
}

#mainAboutContainer a, #mainAboutContainer p {
  color: gray; /* Change the color as needed */
  text-decoration: none;
  margin-right: 4px;
  font-size: 12px;
}

#mainAboutContainer a:hover {
  text-decoration: underline;
}

.radio-container {
  border: 2px solid #de6b6b; /* Border color */
  border-radius: 10px; /* Rounded corners */
  padding: 10px; /* Padding inside the rectangle */
  margin-bottom: 10px; /* Space between each radio button */
}


.app-links-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000001;
  border-radius: 16px;
  font-size: 24px;
  gap: 36px;
}

.app-links-popup .close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.app-links-popup a {
    margin: 10px;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
}

.app-links-popup a i {
    margin-right: 10px;
}

.app-links-popup-background {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000001;
}

.gm-style img
{
  opacity: 1 !important;
}

/* Placeholder styles */
img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.loading {
  background: linear-gradient(90deg, #f3f3f3 25%, #e0e0e0 50%, #f3f3f3 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
      background-position: 200% 0;
  }
  100% {
      background-position: -200% 0;
  }
}

.blur-media {
  filter: blur(6px);
  pointer-events: none; /* Disable interaction with blurred media */
}

.support-container {
  position: relative; /* Position absolutely within its container */
  display: flex;
  align-items: center;
}

#supportLink {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
}

#supportLink a {
  font-weight: bold;
}

.support-bubble, .xfloor-support-bubble {
  position: absolute;
  bottom: 30px; /* Position below the support link */
  right: 0; /* Align to the right */
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 200px;
  z-index: 1000; /* Make sure it's above other elements */
  flex-direction: column;
  gap: 5px;
}

.support-bubble p, .xfloor-support-bubble p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}

.support-bubble i, .xfloor-support-bubble i {
  margin-left: 10px;
  margin-right: 10px; /* Space between icon and text */
}

.support-twitter {
  color: #1DA1F2; /* Twitter brand color */
  text-decoration: none;
}

.support-twitter:hover {
  text-decoration: underline;
}

.support-phone {
  color: #007bff;
  text-decoration: none; /* Remove underline */
}

.support-phone:hover {
  text-decoration: underline; /* Add underline on hover */
}

.hidden {
  display: none;
}
.sub-cookies-title:hover{
  background-color: #F7F9F9;
}
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: 0.3s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}
input:checked + .slider {
  background-color: #007bff;
}
input:checked + .slider:before {
  transform: translateX(18px);
}

/* CSS for the mobile view of the left panel */
@media (max-width: 767px ) {
  .menu-icon {
    display: block; /* Show the menu icon on mobile devices */
    margin-top: 10px;
    margin-left: 10px;
  }

  #topHalf {
    margin-top: 60px;
  }

  .container {
    flex-direction: column;
    height: 100vh;
    width: 100%;  
  }

  .left-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s; /* Add a transition effect for opening and closing the menu */
    z-index: 999;
  }
  
  .left-panel.open {
    left: 0;
  }

  .right-panel {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .main-content-wrapper {
    width: 100%;
    height: 100%;
    padding: 0px;
    position: absolute;
    gap: 0px;
    overflow-y: auto;
  }

  .main-containers {
    flex-direction: column;
    padding: 0px;
    height: 92%;
  }

  .main-federation-header {
    margin-bottom: 10px;
  }

  .profile-chat-container {
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0px;
    margin-left: 0px;
    padding: 0px;
    overflow: unset;
  }

  .gif-container-toggle {
    position: relative;
    width: 100%;
    height: 15%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    display: none;
  }

  .text-chat-toggle {
    width: 80%;
    margin-right: 10px;
    padding-right: 50px;
    text-align: right;
  }

  .gif-chat-toggle {
    position: absolute;
    bottom: 0;
    right: 0;
    /* You can adjust these values for better positioning */
    padding-right: 10px;
    cursor: pointer;
    height: 50px;
    width: auto;
    /*background-image: url("https://media.tenor.com/b5neCS9mBAoAAAAi/what-huh.gif");
    background-size: cover;
    background-position: center;*/
  }

  .chat-container {
    width: 100%;
    height: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
  }

  .chatbox {
    padding: 0px;
    margin-top: 10px;
  }

  .input-container {
    padding: 0px;
    background-color: transparent;
  }

  .chat-input-container {
    padding: 0px;
    background-color: transparent;
  }

  .chat-input-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 1px;
  }

  .input-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 1px;
  }

  .input-wrapper input[type="text"] {
    font-size: 16px;
    background-color: #eee;
  }
  

  .footer {
    flex-direction: row;
    align-items: center;
  }

  .footer-left,
  .footer-right {
    margin-top: 4px;
    font-size: 8px;
    text-align: center;
    margin-bottom: 6px;
  }

  /* Results Container ----------*/
  .results-container {
    padding: 4px;
    margin-top: 10px;
  }

  .results-column {
    width: 100%;
    margin-bottom: 30px;
  }

  .chat-header {
    padding-left: 0px;
    padding-right: 4px;
  }
  #clearChatBtn {
    font-size: 12px;
  }

  .floor-search-container { 
    margin-left: 15%;
    z-index: 10;
    background-color: white;
  }

  .search-wrapper {
    display: flex;
    align-items: center;
    height: auto;
    padding: 0px;
    gap: 0px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .search-container {
    height: 50px;
  }

  .search-text-container {
    position: relative;
    width: 100%;
  }

  .search-input {
    font-size: 18px;
  }

  .search-close-icon {
    transform: translateY(-40%);
  }

  .home-logo {
    width: 40px;
    height: 40px;
    position: absolute;
  }

  .main-about-container {
    width: 100%;
    border-radius: 0px;
    padding: 6px;
    height: 40px;
    position: fixed;
    bottom: 0;
    z-index: 1000; /* Any high value to ensure footer is on top */
    transition: bottom 0.3s ease-in-out; /* Transition for smooth animation */
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    background-color: #F7F9F9;
  }
  
  #mainAboutContainer a, #mainAboutContainer p {
    color: gray; /* Change the color as needed */
    text-decoration: none;
    margin-right: 8px;
    font-size: 12px;
    font-weight: normal;
  }

  .main-container-footer {
    justify-content: center;
  }

  .main-about-container.hide {
    bottom: -60px; /* Hide footer by moving it below the viewport */
  }

    
  .flash-blue-message,
  .flash-green-message,
  .flash-message {
    margin-left: -50%;
    min-width: 150px; 
    width: auto;
  }
}

.footer-message {
  position: fixed;
  bottom: -100px; /* Start hidden */
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  transition: bottom 0.5s;
  z-index: 100015;
  font-size: 14px;

}
.footer-message.show {
  bottom: 0; /* Slide in */
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.footer-message.hide {
  bottom: -100px; /* Slide out */
}
.footer-message button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}
#footerMessageText {
  color: white;
  width: 64%;
}

/*
@media (max-width: 767px) and (orientation: landscape) {
  html {
    transform: rotate(90deg);
    transform-origin: 50% 50%;
    width: 100vh;
    height: 100vw;
    overflow-x: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
}*/

/*@media (max-width: 768px) {
  .half-panel {
    display: none;
    position: relative;
    height: auto;
  }

  .half-panel.active {
    display: block;
  }

  .tab {
    display: inline-block;
    width: 50%;
  }
}*/

/* added by mohith*/
#bimba_cookie{
  height: 100%;
  background-color: rgba(32, 32, 32, 0.4); /* Black w/ opacity */
}


