/* Chat Window */
.chat-window {
  width: 100%;
  max-width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  align-items: center;
  position: relative;
  overflow-y: auto;
  /*margin-bottom: 1rem;*/
  margin-bottom: 5px;
}

.AIPostDiv div:hover {
  background-color: transparent;
}

/* Message Container */
.message-container {
  display: flex;
  align-items: center;
  margin: 0px 0;
  margin-top: 0px;
  padding: 6px;
  justify-self: center;
  width: 98%;
}

/* User and AI Message Alignment */
.user {
  justify-content: flex-end;
  align-items: start;
  margin-right: 8px;
}

.ai {
  justify-content: flex-start;
  display: flex;
  align-items: start;
}

/* Chat Messages */
.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0px;
  width: 98%;
  /*scroll-behavior: smooth;*/
  padding-bottom: 8px;
  overflow-anchor: none;
  scrollbar-width: thin;
  scrollbar-color: lightgray transparent;
  -webkit-overflow-scrolling: touch;
  border-radius: 15px;
    background: white;
  /* iOS smooth scrolling */
  margin-bottom: 3px;
  height: 90%;
  overflow-x: hidden;
}

/* Hide scrollbar by default 
#chat_messages, #floorMainContent {
  scrollbar-width: none; 
  scrollbar-color: lightgray transparent;
}*/

.community_messages #floorMainContent,
#chat_messages {
  padding: 0 0%;
}

#chat_messages::-webkit-scrollbar,
#floorMainContent::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Add class to show scrollbar */
#chat_messages.show-scrollbar,
#chat_messages:focus,
#floorMainContent.show-scrollbar,
#floorMainContent:focus {
  scrollbar-width: thin;
}

#chat_messages.show-scrollbar::-webkit-scrollbar,
#chat_messages:focus::-webkit-scrollbar,
#floorMainContent.show-scrollbar::-webkit-scrollbar,
#floorMainContent:focus::-webkit-scrollbar {
  width: 8px;
}

#chat_messages.show-scrollbar::-webkit-scrollbar-thumb,
#floorMainContent.show-scrollbar::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}


.community_messages {
  display: none;
  flex-grow: 1;
  overflow-y: auto;
  padding: 0px;
  width: 98%;
  scroll-behavior: smooth;
 /* margin-top: 0.5rem;*/
  border-radius: 15px;
  background: transparent;
  margin-bottom: 3px;
  height: 85%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Chat Bubble */
.chat-bubble {
  max-width: 100%;
  padding: 8px 12px;
  margin: 5px 0;
  border-radius: 10px;
  word-wrap: break-word;
  font-size: 14px;
  flex-direction: column;
}

/* User Message Styling */
.user .chat-bubble {
  background: #007bff14;
  color: black;
  border-radius: 10px 10px 10px 10px;
  margin-left: 8px;
  max-width: 60%;
  margin-top: -2px;
}

/* AI Message Styling */
.ai .chat-bubble {
  background: transparent;
  color: black;
  border-radius: 10px 10px 10px 10px;
  margin-right: 8px;
  padding-top: 0px;
  margin-top: 0px;
  width: 100%;
}

/* Chat Input Box - ChatGPT Style */
.chat-input-container {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-top: unset;
  /*1px solid #ddd;*/
  position: relative;
  width: 98%;
  height: auto;
  padding-bottom: 0px;
  transition: transform 0.8s ease;
  /*transition:  opacity 1.5s ease, transform 1.5s ease;*/
  /*height: 7rem;
  height: 22% !important;*/
}

.chat-input-container.slide-down {
  /*display:none;*/
  transform: translateY(100px);
  height: 0;
  opacity: 0;
}

.chat-input-container.slide-up {
  /*display:flex;*/
  transform: translateY(0px);
  height: auto;
  opacity: 1;
}

#chat-input-div {
  display: flex;
  flex-direction: column;
  /* Stack textarea and button vertically */
  width: 100%;
  border-radius: 15px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  background-color: white;
  transform: translateY(0%);
  gap: 4px;
}

#chat-input-div.slide-out {
  transform: translateY(150%) !important;
}

#chat-input, #chat-input-mob-half {
  width: 85%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  resize: none;
  outline: none;
  height: 46px;
}

#chat-input:disabled, #chat-input-mob-half:disabled {
  opacity: 0.5;
  pointer-events: none;
  background-color: transparent;
}

#chat-suggestions-div {
  display: flex;
  justify-content: flex-start;
  /* Align button to the left */
  margin-top: 0px;
  /* Space between textarea and button */
}

#suggestions-button {
  background: white;
  color: #5d5d5d;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  display: none;
}

#suggestions-button:hover {
  background: #52a6f5;
  color: white;
}

#suggestionsToogle-button,
#suggestions-chat-button,
#dynamic-buttons button {
  background: white;
  color: #5d5d5d;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  margin-left: 5px;
}

#dynamic-buttons button{
  display: flex;
  align-items: center;
  width: 100% !important;
}

#suggestionsToogle-button:hover,
#suggestions-chat-button:hover,
#dynamic-buttons button:hover,
#extra-buttons-container button:hover {
  background: #52a6f5;
  color: white !important;
}

#dynamic-buttons:hover button span,
#dynamic-buttons:hover button i {
  color: white;
}

/* Focus Effect */
#chat-input-div:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}



/* Send Button - Floating & Modern */
#send-btn,
#pause-btn, #send-btn-mob-half, #pause-btn-mob-half {
  position: absolute;
  /* ✅ Position inside input */
  right: 20px;
  /* ✅ Aligns inside the right corner */
  background: #0056b3;
  border: none;
  color: white;
  border: none;
  padding: 10px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-in-out;
  margin-bottom: 4px;
}

#send-btn i {
  font-size: 18px;
}

#post-send-btn {
  position: absolute;
  /* ✅ Position inside input */
  right: 18px;
  top: 13px;
  /* ✅ Aligns inside the right corner */
  background: transparent;
  border: 1px solid rgb(81, 166, 245);
  color: rgb(81, 166, 245);
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 12px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-in-out;
}

#post-send-btn i {
  font-size: 12px;
  color: rgb(81, 166, 245) !important;
  margin-right: 8px;
}
#post-send-btn:not(:disabled):hover{
  background: rgb(81, 166, 245);
  color: white !important;
  border: none;
}
#post-send-btn:not(:disabled):hover i {
  color: white !important;   /* ensure icon turns white on hover */
}
#post-send-btn:disabled{
  cursor: not-allowed;
}

.hide-header {
  transform: translateY(-100%);
}

/* Disabled Send Button (Gray) */
#send-btn:disabled, #send-btn-mob-half:disabled{
  color: #ccc;
  /* ✅ Gray color when disabled */
  background-color: white;
  cursor: not-allowed;
}

/* Active Send Button (Blue on Hover) */
#send-btn:not(:disabled):hover, #send-btn-mob-half:not(:disabled):hover {
  color: #007bff;
}

#send-btn:hover, #send-btn-mob-half:hover {
  background: #0056b3;
}


/* Embedded Content */
.embedded-content {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
}

/* AI Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  background: #eaeaea;
  padding: 8px;
  border-radius: 10px;
  align-items: center;
  flex-direction: row;
  padding-top: 0px;
}

/* Typing Dots Animation */
.typing-indicator .dot {
  width: 8px;
  height: 8px;
  background: gray;
  border-radius: 50%;
  opacity: 0.5;
  animation: blink 1.5s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Chat Avatar */
.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* Avatar Positioning */
.user .chat-avatar {
  margin-left: 8px;
}

.ai .chat-avatar {
  margin-right: 0px;
}

/* AI Chips - Suggestion Buttons */
.deep-chat-suggestion-button {
  background: transparent;
  color: #51a6f5;
  border: none;
  padding: 4px 8px;
  margin: 0px;
  border-radius: 4px;
  /* ✅ Rounded button */
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Hover Effect */
.deep-chat-suggestion-button:not([data-disabled="true"]):hover {
  background: #52a6f5;
  color: white;
  /*border-color: #0056b3;*/
}

.deep-chat-button:not([data-disabled="true"]):hover .suggestion-title-main,
.deep-chat-button:not([data-disabled="true"]):hover .suggestion-title-description {
  color: white;
  /* Ensure nested spans also change color */
}

/* Active (Click Effect) */
.deep-chat-suggestion-button:active {
  transform: scale(0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.chat-upload-image {
  cursor: pointer;
  padding: 5px 9px;
  padding-bottom: 0;
  font-size: 15px;
  background-color: white;
  border-radius: 16px;
  margin-right: 5px;
  margin-left: 5px;
  border: 1px solid #ccc;
  display: none;
}

.chat-upload-image:hover {
  background-color: #52a6f5;
  color: white;
}

.upload-dropup {
  position: absolute;
  bottom: 60px;
  left: 10px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.upload-dropup div {
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
}

.upload-dropup div:hover {
  background: #f0f0f0;
}

.hidden {
  display: none;
}

.camera-container {
  position: absolute;
  top: 0;
  left: 35%;
  width: 30%;
  height: auto;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 100000;
  overflow: auto;
}

.camera-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px;
  width: 80%;
  max-width: 300px;
}

.cancel-btn,
.confirm-btn {
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.cancel-btn:hover {
  color: red;
}

.confirm-btn:hover {
  color: green;
}

/* Round Capture Button */
.capture-btn {
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.chat-image-preview {
  display: flex;
  align-items: flex-start;
  /*justify-content: space-between;*/
  gap: 1px;
  width: auto;
  height: 60px;
  background: white;
  padding: 8px;
  border-radius: 8px;
  /* margin-bottom: -20px;*/
}

.chat-image-preview img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 1;
  border-radius: 16px;
}

.chat-selected-image-close-div {
  position: relative;
  top: -5px;
  padding: 2px;
  left: -10px;
  background-color: white;
  border-radius: 50%;
}

.close-preview {
  font-size: 16px;
  color: black;
  cursor: pointer;
}

.disabled-upload {
  pointer-events: none;
  /* Prevents clicking */
  opacity: 0.5;
  /* Make it look disabled */
  cursor: not-allowed;
  /* Show disabled cursor */
}

#login-AI {
  display: block;
  position: relative;
  right: 0;
  margin-right: 0;
  position: relative;
  top: 0;
  padding: 6px 10px;
  font-size: 12px;
  background-color: transparent;
  color: gray;
  cursor: pointer;
  border: 1px solid gray;
  border-radius: 25px;
}

/* Light theme for the sidebar with soothing gradient */
/* Sidebar with light theme and soothing gradient */
/*.sidebar {
  width: 20%;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  background: #f4f7fc;
  color: #4f5b66;
  padding-top: 0px;
  display: block;
  transition: all 0.4s ease;
  z-index: 10000;
}*/
.sidebar {
  width: 16%;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  background: transparent;
  color: #4f5b66;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 1%;
  transition: all 0.4s ease;
  z-index: 10000;
  padding-top: 5px;
  border: 1px solid #f0f0f0;
}

#sidebarAI.animated {
  transition: all 0.4s ease-in-out;
}

.sidebar h3 {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  background: linear-gradient(rgb(248, 252, 255) 0%, rgb(241, 239, 255) 70%, rgb(59 130 246 / 18%) 100%);
  /*#51a6f5;
  /* Soft blue background */
  font-size: 0.8rem;
  color: gray;
  /* Blue for headings */
  margin-bottom: 0px;
  font-weight: 600;
  height: 12%;
  width: 100%;
}

.sidebar h3 a {
  display: flex;
}

/*.sidebar #lbl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1rem;
  color: #51a6f5;  
}*/
.sidebar #lbl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 👈 Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 1rem;
  color: white;
  line-height: 1.2em;
  max-height: 2.4em;
  /* 2 lines * line-height */
}


.sidebar .logo {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  background-size: cover;
  background-position: center;
}

#sidebar-content {
  width: 100%;
  height: 100%;
}

.sidebar ul {
  list-style: none;
  padding: 4px;
  overflow-y: auto;
  height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #e4e4e4 transparent;
  overflow-x: hidden;
}

.footer_sub {
  margin-bottom: 0px;
  cursor: pointer;
  background: transparent !important;
  height: auto !important;
  float: right;
  right: 0px;
  width: 100%;
}

.sidebar li {
  padding: 6px 6px;
  border-radius: 25px;
  /* Rounded corners for items */
  font-weight: normal;
  color: #333D42;
  /* Default text color */
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap-mode: nowrap;
}

.sidebar li:hover {
  /* Light blue hover effect 
  background: #007bff14;
  color: #51a6f5;
   Blue text on hover */
  background-color: #0000000f;
}

.sidebar li.active {
  /*background: #007bff14;
  color: #51a6f5;*/
  background-color: #0000000f;
  border: none;
  border-radius: 25px;

}

.sidebar li a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: normal;
  width: 90%;
  overflow: hidden;
  padding: 2px 6px;
  mask-image: linear-gradient(to right, black 85%, transparent 97%);
  font-size: 0.875rem;
}

.sidebar-footer {
  display: flex;
  gap: 4px;
  padding: 0px;
  background: linear-gradient(rgb(248, 252, 255) 0%, rgb(241, 239, 255) 70%, rgb(59 130 246 / 18%) 100%);
  height: 8%;
  justify-content: space-between;
}

li.noThreadMsg {
  text-wrap: auto;
  gap: 8px;
  float: left;
  text-wrap: auto;
}

.sidebar li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  font-size: 12px;
  padding: 6px 6px;
}

.disabled-thread-item {
  opacity: 0.5;
  pointer-events: none;
}

.threadMenuIcon {
  display: none;
  font-size: 14px;
  cursor: pointer;
  padding: 0 8px;
  font-weight: bold;
}

.sidebar li:hover .threadMenuIcon {
  display: inline;
}

.threadDropdownMenu {
  display: none;
  position: absolute;
  right: -10px;
  top: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 100px;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
}

.threadDropdownItem {
  padding: 6px 12px;
  font-size: 0.85rem;
  color: red;
  cursor: pointer;
  white-space: nowrap;
}

.threadDropdownItem:hover {
  background-color: #f5f5f5;
}

/* till here */

.logout-btn {
  color: white;
  background-color: #e74c3c;
  /* Red for logout */
  padding: 8px 15px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  background: transparent;
}

.logout-btn:hover {
  /*background-color: #c0392b;  /* Darker red on hover */
}

.chat-main {
  display: flex;
  flex-direction: column;
  background: inherit;
  float: left;
  width: 100%; /*changed from 80 to 100% after treeView div added on 3-9-25*/
  height: 100%;
  align-items: center;
  padding: 0px;
  transition: width 0.4s ease;
  position: relative;
flex: 3.8;
margin: 0 0rem;
}
/* Added on 3-9-25 after treeView div added*/
#chatContainerDiv{
  display: flex;
  flex-direction: column; /* Stack header & contentWrapper vertically */
  width: 84%;
  height: 100%;
}

#chatWrapperDiv{
  display: flex;
  flex-direction: row; 
  width: 100%;
  flex: 1;
  height: 90%;
  background: rgb(240, 240, 240);
}


#chat_main,
#treeViewMain {
  min-width: 0; /* Prevents content from forcing overflow */
  display: flex;
  flex-direction: column;
}

#treeViewMain {
  float: left;
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 16px;
    flex:2;
    position: relative;
    padding-top: 0.5rem;
}

#treeView {
  margin-right: 0rem;
  background: transparent;
  height: 83%;
  padding-left: 0.5rem;
  margin-top: 0px;
  overflow: scroll;
  mask-image: linear-gradient(to bottom, transparent 0%, black 0%, black 97%, transparent 100%);
  padding-right: 0.5rem;
}
/* till here */
.chat-header {
  padding: 10px;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  position: sticky;
  top: 0;
  z-index: 1002;
  transition: transform 0.8s ease;
  transform: translateY(0);
  border: none;
  /* Default position (visible) */
}

.chat-header.slide-up {
  transform: translateY(-100%);
  /* Slide up (hidden) */
  opacity: 0;
  padding: 0;
  height: 0 !important;
  /*display:none;*/
}

.chat-header.slide-down {
  padding: 10px;
  height: 52px !important;
  transform: translateY(0);
  /* Slide down (visible) */
  opacity: 1;
  /*display:flex;*/
}

.menu-btn {
  display: block;
  font-size: 26px;
  cursor: pointer;
  color: gray;
  padding: 4px 6px 4px 6px;
}

.menu-btn:hover,
#login-AI:hover {
  border-radius: 12px;
  background: #6b6b6b33;
}

.new-thread {
  background: transparent;
  color: gray;
  border: none;
  padding: 0;
}

/* Added by mohith by 15-5-25*/
/*#new-thread {
  background: transparent;
  padding: 4px 0;
  border: 1px solid rgb(25, 118, 210);
  padding-left: 10px;
  color: rgb(25, 118, 210);
  margin: 5px 0px;
  border-radius: 25px;
  font-size: 16px;
  display: flex;
  align-items: center;
  width: 94%;
  margin-left: 3%;
  gap: 6px;
}*/
#new-thread {
  color: gray;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

#new-thread:hover {
  background: #007bff14 !important;
}

/*till here*/

.thread-list {
  list-style: none;
  padding: 0;
}

.thread-list li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.chat-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.math-inline {
  font-style: italic;
}

.math-block {
  margin: 10px 0;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 5px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  margin: 5px 0;
}

.list-number,
.list-check {
  font-weight: bold;
  margin-right: 5px;
}

#helpMenu {
  border-radius: 100px;
  padding: 0;
  background: transparent;
  color: #a19898;
  border: 1px solid #e3e3e3;
  padding: 4px 8px;
  font-size: 0.75rem;
}

.helpMenuMain {
  position: fixed;
  bottom: 4px;
  right: 4px;
}

#xfloorLogo {
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.helpLabel {

  color: gray;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  padding: 6px;
}

#help-menu {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 200px;
}

#help-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#help-menu li {
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
}

#help-menu li a {
  color: gray;
  font-weight: normal;
  text-decoration: none;
}

#help-menu li a i {
  padding-right: 6px;
}

#help-menu li:hover {
  background-color: #f0f0f0;
}

.helphidden {
  display: none;
}

#suggestions-container {
  width: 84%;
  position: absolute;
  left: 8%;
  bottom: 140px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
  z-index: 1000;
  max-height: 80%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #e4e4e4 transparent;
}

#extra-buttons-container {
  width: 40%;
  position: absolute;
  left: 30%;
  bottom: 80px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
  z-index: 1000;
  max-height: 80%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #e4e4e4 transparent;
}

/* Show it when active */
#suggestions-container.active {
  display: block;
}

#dynamic-buttons button.active,
#extra-buttons-container button.active {
  background: #51a6f5;
  color: white !important;
}

.chain-divider {
  margin: 0 4px;
  color: #aaa;
  vertical-align: middle;
}


#suggestions-content button {
  background-color: white;
  border-radius: 16px;
  font-size: 14px;
  padding: 8px 12px;
  box-shadow: none;
  background-color: #e8f4ff;
  margin: 5px;
}

/* 
#suggestions-content.chips-single-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
}


#suggestions-content.chips-two-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
}

#suggestions-content button {
    white-space: nowrap;
    border-radius: 999px;
    padding: 6px 12px;
    cursor: pointer;
    box-shadow: none;
}*/


#extra-buttons-container button {
  border-radius: 16px;
  font-size: 14px;
  padding: 8px 12px;
  box-shadow: none;
  background-color: #e8f4ff;
  border: none;
  margin-left: 5px;
  margin-bottom: 10px;
}

#suggestions-content button:not([data-disabled="true"]):hover {
  color: white;
  background-color: #52a6f5;
}

.chat-initial-message-container,.chat-initial-message-container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  text-align: center;
  height: 100%;
}

.chat-initial-message-container-div,.chat-initial-message-container-div1 {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 98%;
  overflow: auto;
  justify-self: center;
}

/*.chat-initial-message-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 90%; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  text-align: center;
  overflow: auto;
}

.chat-initial-message-container::-webkit-scrollbar {
  width: 6px; 
}

.chat-initial-message-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
*/

.chat-initial-message,.chat-initial-message1 {
  font-size: 18px;
  color: #51a6f5;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 10px;
  width: 75%;
}

/*.chat-initial-chips,.chat-initial-chips1 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.chat-initial-chips button,.chat-initial-chips1 button {
  padding: 6px 12px;
  border-radius: 25px;
  box-shadow: none;
  background-color: #e8f4ff;
}*/

/* Shared */
/*.chat-initial-chips,.chat-initial-chips1 {
    max-width: 90%;
    overflow-x: auto;
    overflow-y: hidden;
}

/* Case < 4 chips → 1 row 
.chat-initial-chips.single-row,.chat-initial-chips1.single-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}

/* Case ≥ 4 chips → 2 rows stacked 
.chat-initial-chips.two-rows,.chat-initial-chips1.two-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Row layout → horizontal scroll preserved 
.initial-chip-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}*/

/* Buttons */
.chat-initial-chips button,.chat-initial-chips1 button {
    display: inline-flex;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: none;
}

.chat-initial-chips,.chat-initial-chips1 {
  display: flex;
  flex-wrap: wrap;     /* allows natural wrapping */
  gap: 6px;
  width: 90%;
  max-height: calc(4 * 38px); /* adjust chip height if needed */
  overflow-y: auto;    /* vertical scroll */
  overflow-x: hidden;  /* disable horizontal scroll */
  padding-right: 4px;  /* small space for scrollbar */
  justify-content: center;
}




/*.chat-initial-chips button:hover,.chat-initial-chips1 button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}*/


.chat-initial-heading,.chat-initial-heading1 {
  margin-bottom: 10px;
  text-align: center;
  color: rgb(75, 85, 99);
  font-size: 1rem;
  display: none;
}

.disabled {
  pointer-events: none;
  /* Prevents clicks & interactions */
  opacity: 0.5;
  /* Makes it look disabled */
}

.disabled #pause-btn {
  pointer-events: all !important;
  /* Keep pauseBtn clickable */
  opacity: 1 !important;
  /* Maintain full visibility */
}

.suggestion-title-main {
  font-size: 12px;
  /* Main text size */
  font-weight: 500;
  color: #51a6f5;
}

.suggestion-title-description {
  font-size: 10px;
  /* Smaller text size */
  color: gray;
  max-width: 100px;
  /* Limit width */
  white-space: nowrap;
  /* Prevent wrapping */
  overflow: hidden;
  /* Hide overflow */
  text-overflow: ellipsis;
  /* Add '...' when text overflows */
  display: none;
  position: relative;
  /* Keep position for tooltip */
  cursor: pointer;
}

.tooltip-popup {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.ai-info-icon {
  font-size: 14px;
  color: gray;
}

.sidebar.active {
  transform: translateX(0px);
}

.payment-prompt {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  z-index: 9999;
}

.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9998;
}

.chat-loading {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  pointer-events: none;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(200, 200, 200, 0.3);
  /* Soft gray */
  border-top: 3px solid rgba(173, 216, 230, 0.7);
  /* Light pastel blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0px 0px 8px rgba(173, 216, 230, 0.5);
  /* Light glow */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Dot Spinner */
.dot-spinner {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* Individual dot style */
.loading-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #52a6f5;
  /* #3498db; /* Dot color */
  animation: dot-bounce 1.4s infinite ease-in-out both;
}

/* Animation for each dot */
.loading-dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Keyframe for bouncing animation */
@keyframes dot-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}


.ai-info-heading-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 8px;
}

.ai-info-heading {
  font-size: 1.25rem;
  color: rgb(75, 85, 99);
  text-align: center;
  line-height: 1.7rem;
  max-width: 40rem;
}

#srmMoreBtn,
#morePostBtn {
  color: #52a6f5;
  padding: 2px 8px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #52a6f5;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 500;
}

#srmMoreBtn:hover,
#morePostBtn:hover {
  color: white;
  background-color: #52a6f5;

}

#srmAIOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#srmAIModal {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  height: 90%;
  overflow: auto;
  position: absolute;
}

#srmAICloseBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: red;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.message-content ol,
.message-content ul {
  margin-left: 14px;
}

.fheader-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  padding: 10px;
}

.ai-profile-dropup-menu {
  position: absolute;
  /*bottom: 35%;
    width: 90%;
   appear above */
  width: auto;
  top: 40px;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  right: 1%;
  padding: 5px;
}

.ai-profile-dropup-icon {
  margin: 0px 10px;
}

.ai-profile-dropup-item {
  padding: 10px 12px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  border-radius: 5px;
  display: flex;
}

.ai-profile-dropup-item:hover {
  background-color: #f0f0f0;
}

#closeAIPostingButton {
  background-color: #f30101b8;
  right: 2%;
  bottom: 8%;
}

#closeAIPostingIcon {
  color: white !important;
  font-size: 1rem;
}

#closeAIPostingText {
  color: white;
  font-size: 1rem;
  margin-left: 5px;
}

.chat-pin-icon {
  position: absolute;
  right: 12%;
  cursor: pointer;
  font-size: medium;
  background-color: #51a6f5;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
}

.community_messages .floor-post-container {
  height: 100%;
}

#speech-start-btn,
#speech-stop-btn, #speech-start-btn-mob-half, #speech-stop-btn-mob-half, .evalit-speech-start-btn, .evalit-speech-stop-btn {
  width: 36px;
  /* Make it round */
  height: 36px;
  border: none;
  /* No border */
  border-radius: 50%;
  /* Full circle */
  background-color: #ffffff;
  /* Light background color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* Icon size */
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  position: relative;
  right: 60px;
}

#speech-stop-btn, #speech-stop-btn-mob-half{
  position: absolute;
}


#chipHubBackBtn,
#plugChipBtn {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: gray;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  position: absolute;
  right: 0px;
  top: -16px;
  padding: 0;
}

#chipHubBackBtn i,
#plugChipBtn i {
  font-size: 0.9rem;
}


/*#speech-stop-btn.listening {
  animation: speechpulse 1s infinite;
  background-color: #52a6f5;

}*/

#speech-stop-btn i, .evalit-speech-stop-btn {
  position: relative;
  z-index: 2;
  color: hsla(0, 0%, 0%, 0.561); /* icon color */
}

#speech-stop-btn .progress-ring, .evalit-speech-stop-btn .progress-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px; /* slightly larger than button */
  height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(#FF5722 var(--progress, 0deg),transparent 0deg);
  mask: radial-gradient(circle 16px at center, transparent 97%, black 100%);
  -webkit-mask: radial-gradient(circle 16px at center, transparent 97%, black 100%);
  z-index: 1;
  pointer-events: none;
}




#chip_map {
  display: none;
  float: left;
  width: 100%;
  height: 0%;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  transform: scale(0);
}



#chat_federated_div {
  float: left;
  width: 100%;
  height: 0%;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  transform: scale(0);
}

button#radix-«rvc»:hover {
  background: rgb(93 93 93 / 12%) !important;
}

@keyframes speechpulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 150, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 150, 255, 0);
  }
}


.closeCreateFloorDivButton,
.ai-settings-close-btn {
  position: absolute;
  right: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c83232;
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 999999;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 0;
  top: 8px;
}

.closeCreateFloorDivButton:hover,
.ai-settings-close-btn:hover {
  color: #c83232;
  background-color: white;
  border: 1px solid #c83232;
}


#chat-create-floor-wrapper {
  position: relative;
  overflow-y: auto;
  height: 100%;
}

.ai-block-btn-txt {
  color: #5d5d5d;
  font-size: 12px;
  font-weight: 600;
}

.scroll-to-bottom {
  position: absolute;
  bottom: 105px;
  z-index: 10;
  padding: 6px 10px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0.8;
}

#footer_floor_div {
  float: left;
  display: flex;
  color: #4f5b66;
  width: 95%;
  align-items: center;
  gap: 8px;
  padding: 0 12%;
  position: relative;
}

#hub_previous_btn {
  background-color: transparent;
  border: none;
  padding: 0px;
  display: none;
}

#hub_arrow_icon {
  width: 24px;
  height: 24px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  font-size: medium;
  border-radius: 25%;
}

#hubBtn {
  border-radius: 25px;
  padding: 4px;
  margin-right: 0;
  font-size: 0.875rem;
  border: none lightgray;
  border: 1px solid #51a6f5;
  color: #51a6f5;
  padding: 4px 9px;
  display: none;
  background-color: transparent;
}



#hubBtn:hover {
  background: #51a6f5;
  color: white !important;
}



#agent_container {
  float: left;
  display: none;
  gap: 8px;
  text-align: left;
  width: 100%;
  padding: 0%;
  align-items: center;
  color: #4f5b66;
  padding: 10px;
  padding-left: 0;
}


#chip_map .fed-path-header {
  top: 0rem !important;
  margin-left: 0%;
}

#chip_map #fedLeafNodeLayout {
  width: 80%;
}

#chip_map #leafWrapper {
  width: 80%;
}

.message-content.visible {
  transition: all 1.5s ease;
}

.title-desc-wrapper {
  max-width: 200px;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#blockContent {
  height: 41%;
}

#blockContent .floor-menu-button {
  font-size: 0.875rem;
  color: black;
  width: 100%;
  border-radius: 25px;
  display: flex;
}

#blockContent .floor-menu-button.active {
  /*color: #51a6f5;
  background: #007bff14;*/
  background-color: #0000000f;
  font-weight: normal;
}

#blockContent #floorBlocksMenu {
  margin-top: 0;
}

#blockContent .floor-blocks-subheader {
  height: 85%;
  overflow: auto;
  padding: 6px;
  padding-left: 10px;
  scrollbar-width: thin;
  scrollbar-color: #e4e4e4 transparent;
}

#blockContent .floor-menu-button:hover {
  background-color: #0000000f;
  /*color: #51a6f5;*/
}

#blockContent .menu-inner {
  background: transparent;
}

.followers-badge:hover {
  text-decoration: underline;
}

#sidebarCopyrightDiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  color: gray;
  height: 6%;
}

.xLogo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
}

.chatdialog {
  display: none;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 20px;
  padding: 20px 15px 12px;
  flex-direction: column;
  gap: 6px;
  width: 70%;
  position: absolute;
  bottom:120px;
}

.typing-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

.status-container-dot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* space between the texts */
  align-items: flex-start;
  /* align the texts to the left */
}

.status-text-dot {
  font-size: 14px;
  /* adjusted text size */
  color: black;
  font-weight: normal;
  transition: opacity 1s ease-in-out, transform 0.5s ease-in-out, color 0.5s ease-in-out;
  /* Smooth transition */
  opacity: 0;
  /* Initially hidden */
}

.status-text-dot.faded {
  opacity: 0.5;
  /* Faded state */
}

.status-text-dot.hidden {
  display: none;
  /* Hidden state */
}

.status-text-dot.active {
  display: block;
  opacity: 1;
  /* Fully visible */
  color: black;
  /* Change color when active to our blue */
  transform: scale(1.05);
  /* Slight scale effect to make it stand out */
}

.blink-dot {
  animation: blink-animation 1s infinite ease-in-out;
}

@keyframes blink-animation {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}


.plugged-floor,.trending-floor, .favorite-floor {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}


.plugged-floor:hover,.trending-floor:hover {
  transform: scale(1.05);
}

#pluggedFloorsInner {
  height: 88%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-top: 0.5rem;
}

.floor-logo-chat {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
  opacity: 1;
}

/* Floor list container */
.floor-list {
  list-style: none;
  padding: 6px;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Each floor item (works for Trending & Plugged) */
.floor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  border: none;
  border-radius: 8px;
}

.floor-item:last-child {
  border-bottom: none;
}

.floor-item:hover {
  background-color: #f9f9f9;
}

/* Logo / Avatar */
.floor-logo-chat,
.floor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.floor-logo-chat {
  object-fit: cover;
}

.floor-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
/* Floor info container (title + desc in one line) */
.floor-info {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0; /* important for text truncation inside flex */
  flex-direction: column;
    padding-left: 0.5rem;
}

/* Title */
.floor-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: left;
}

/* Description */
.floor-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
      float: left;
    width: 100%;
    text-align: left;
}




/* No floors / Coming soon message */
.no-floors,
.coming-soon {
  text-align: center;
  padding: 10px;
  color: #999;
  font-size: 0.9rem;
}


#pluggedFloorsContainer {
  position: absolute;
  bottom: 140px;
  right: 0;
  display: none;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  background-color: white;
  box-shadow: 0px 0px 4px 0px #bbcbd8;
  height: 300px;
  width: 250px;
  flex-wrap: wrap;
  gap: 20px;
}

.search-input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #007bff;
}


.tab-container {
  display: flex;
  justify-content: space-around;
  background-color: #f0f0f0;
  height: 38px;
  border-radius: 5px;
  margin: 0 0.4rem;
  gap: 4px;
}

.tab-button {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333D42;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.tab-button i {
  margin-right: 8px;
  font-size: 14px;
  color: #333D42 !important;
}

.tab-button.active {
  background-color: #51a6f5;
  /* Your brand color */
  color: white;
}

.tab-button.active i {
  color: white !important;
}

.tab-button:hover {
  background-color: #51a6f5;
  color: white;
}

.tab-content {
  display: none;
  padding: 0px;
  height: 78% !important;
  overflow-y: auto;
  margin-top: 0.5rem;
  gap: 0.5rem;
  flex-direction: column;
  padding-left: 0.5rem;
  padding-bottom: 0px;
  border-radius: 15px;
  background: white;
  margin: 0.4rem;
  width: 95%;
  padding-top: 0.5rem;
  margin-top: 0.95rem;
}

.tab-content.active {
  display: block;
}

.tab-content1 {
  display: flex;
  flex-direction: column;
  float: left;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  background: #f4f2f2;
  bottom: 0px;
  float: left;
  width: 100%;
  position: relative;
  height: 15%;
  justify-content: flex-end;
}

.footer-followed-row,
.footer-second-row,
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-followed-row {
  margin-bottom: 0px;
  margin: 0;
  cursor: pointer;
  justify-content: center;
}

.footer-second-row {
  margin-bottom: 0px;
  justify-content: space-between;
}

.footer-bottom-row {
  margin-top: 0px;
  border-top: 1px solid #333d421a;
  padding-top: 0.5rem;
}

.available-tokens:hover {
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
}

.followed-floor,
.followers-count,
.share-button,
.available-tokens,
.floor-settings,
.copyright {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: rgb(81, 166, 245);
}

.followed-floor i,
.followers-count i,
.available-tokens i,
.floor-settings i,
.share-button i {
  margin-right: 8px;
  font-size: 12px;
  color: rgb(81, 166, 245);
}

.share-button1 {
  color: white;
  border: none;
  font-size: 14px;
  margin-left: 10px;
  cursor: pointer;
  display: block;
}

.share-button:hover {
  background-color: #4291d3;
}

.floor-settings {
  display: none;
}

.floor-settings i {
  margin-right: 8px;
}

.copyright {
  font-size: 12px;
  color: #333D42;
}

.footer-logo img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  opacity: 1;
}

/* Show floor settings and available tokens only for the owner */
.owner .floor-settings {
  display: flex;
}

/* Owner Row Styling */
.owner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#mapViewIcon{
  border: 1px  solid lightgray;
  border-radius: 8px;
  padding: 2px 10px;
}

#mapViewIcon.active{
  background-color: rgb(81, 166, 245);
}

#mapViewIcon.active i{
    color: white !important;
}

.action-wrapper {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%; 
  gap: 10px;
  bottom: 16px;
  position: relative;
}

/* favWrapper = 20% */
.favorite-div {
  position: relative;
  /*bottom: 4px;*/
  flex: 0 0 12%;
  justify-content: center;
}

/* bottom-bar = 80% */
.bottom-bar-wrapper {
  flex: 0 0 82%;
  display: flex;
}
  .favorite-floor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .favorite-floor-overlay.show {
    opacity: 1;
  }

  .favorite-floor-popup {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 320px;
    transition: transform 0.3s ease;
    transform: scale(0.9);
  }

  .favorite-floor-overlay.show .favorite-floor-popup {
    transform: scale(1);
  }

  .favorite-floor-popup p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .favorite-floor-popup button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
  }

  .favorite-floor-popup button:hover {
    background: #0056b3;
  }

/* Responsive Styling */
@media (max-width: 768px) {
  .chat-messages{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .tab-content {
    background: transparent;
  }

  .tab-container {
    background: transparent;
  }

  .tab-button {
    color: white;
  }

  .tab-button i {
    color: white !important;
  }

  .sidebar-footer {
    background: transparent;
  }

  .sidebar li a {
    color: white !important;
  }

  .footer-followed-row,
  .footer-second-row,
  .footer-bottom-row {
    flex-direction: row;
    align-items: center;
  }

  .footer-followed-row {
    margin-bottom: 0px;
    margin: 0;
    cursor: pointer;
    justify-content: center;
  }

  .footer-second-row {
    margin-bottom: 0px;
  }

  .footer-bottom-row {
    margin-top: 0px;
  }
}


.new-thread-button,
.new-block-button {
  border: 1px solid #51a6f5;
  border-radius: 25px;
  padding: 6px 20px;
  font-size: 14px !important;
  margin-top: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  max-width: 142px;
  margin-left: 6px;
  color: #51a6f5 !important;
  background: transparent;
}

.new-thread-button:hover,
.new-block-button:hover {
  background-color: #4291d3;
}

.new-thread-button i,
.new-block-button i {
  margin-right: 8px;
}

/* Container */
.points-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  justify-content: center;
  
}

/* Crown styling */
.points-badge .crown {
  font-size: 1rem;
  transition: color 0.3s ease;
}

/* Crown colors */
.crown.bronze {
  color: #cd7f32;
}

/* bronze */
.crown.silver {
  color: #c0c0c0;
}

/* silver */
.crown.gold {
  color: #ffd700;
}

/* gold */
.crown.platinum {
  color: #51a6f5;
}

.crown.default_crown {
  color: lightgray;
}

/* your brand color */




/*.floating-arrow,
.floating-close-icon {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgb(81, 166, 245);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}*/

.floating-arrow, .floating-close-icon {
  position: absolute;
  top: 50%;
  left: -8px; /* you can move it to right: 0; if needed */
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  background: #808080;
  color: #fff;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  white-space: nowrap;
  transition: background 0.3s;
  z-index: 1000;
}

.floating-arrow:hover {
  background: #555;
}

.floating-close-icon{

  background-color: red;
}

.floating-tab-container {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.floating-tab {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  text-align: center;
  background: #f1f1f1;
  transition: background 0.3s;
}

.floating-tab:hover {
  background: #e0e0e0;
}

.floating-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
}

.floating-overlay-content {
  padding: 20px;
  height: 100%;
}

.hidden {
  display: none;
}
.floating-tree-btn {
  display: none;
  position: fixed;
  top: 42%;
  left: 8px;
  background: gray;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 1001;
  padding:0;
}

   .switch-wrapper {
      display: flex;
      background: #e5e7eb;
      border-radius: 50px;
      padding: 4px;
      width: 140px;
      position: relative;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .switch-option {
      flex: 1;
      text-align: center;
      padding: 8px 0;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      color: #6b7280;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: color 0.3s ease;
      z-index: 1;
    }

    .switch-option.active {
      color: #111827;
      font-weight: 600;
    }

    .switch-indicator {
      position: absolute;
      top: 4px;
      left: 4px;
      width: calc(50% - 4px);
      height: calc(100% - 8px);
      background: white;
      border-radius: 50px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: left 0.3s ease;
    }

    .switch-wrapper.active .switch-indicator {
      left: calc(50% + 0px);
    }

    #xFloorShareIcon {
      color: #333D42 !important;
    }

    #followers_badge {
      color: #333D42 !important;
    }

    #badge {
      color: #333D42 !important;
    }
     #tokenlabel {
      color: #333D42 !important;
    }

    #settingIcon {
      color: #333D42 !important;
    }

    
#chat-plus-wrapper, #chat-plus-wrapper-mob-half, #chat-input-copy-btn {
  position: relative;
}

#chat-plus-btn, #chat-plus-btn-mob-half, #chat-input-copy-btn {
  font-size: 15px;
  background: transparent;
  color: black;
  border-radius: 50%;
  width: 24px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
#chat-input-copy-btn i:hover{
  color: #007BFF !important;
}

/* Drop-up menu */
#dropup-menu, #dropup-menu-mob-half {
  display: none;
  position: absolute;
  bottom: 50px; /* sits above plus icon */
  left: 0;
  background: transparent;
  color: #333;
  border-radius: 12px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.2);*/
  width: 150px;
  z-index: 1000;
  overflow: hidden;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
}

.dropup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  width: 100%;
  background: black;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  border-radius: 25px;
}

.dropup-item:hover {
  background: #f0f0f0;
  color: black;
  
}



#floorsContainer {
  /*width: 100%;*/
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: row-reverse;
  bottom: 4px;
}

.following-text {
  margin-top: 0;
  color: gray;
  font-size: 10px;
  font-style: italic;
  float: left;
  text-align: center;
  display: flex
;
    gap: 3px;
    justify-content: center;
    align-items: center;
}

.following-text b {
  color: forestgreen;
  max-width: 120px; /* adjust width as needed */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  font-size: 10px;
  padding-left: 2px;
  cursor: pointer;
}


.bottom-bar {
  position: relative;
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  /*box-shadow: 0 6px 16px rgba(0,0,0,0.15);*/
  /*bottom: 16px;*/
}

.icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: #444;
  transition: all 0.3s ease;
}

.icon-wrapper:hover {
  color: #51a6f5;
}

.icon-wrapper i {
  font-size: 14px;
  color: #333D42 !important;
}

span.legend-text:hover {
  color: #51a6f5;
}
.icon-wrapper .label {
    font-size: 12px;
    font-weight: normal;
}

/* Overlay Panel Styling */
.icon-wrapper .overlay-panel, #floorsContainer .overlay-panel {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}


.icon-wrapper .overlay-panel.active, #floorsContainer .overlay-panel.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  position: fixed;
  /*left:85%;*/
  z-index: 9999;
}

/* Search Panel */
.overlay-panel.search-panel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overlay-panel.search-panel input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px;
  border-radius: 6px;
  background: #f0f2f5;
}

.overlay-panel .close-btn {
  cursor: pointer;
  color: #777;
  transition: color 0.3s;
}

.overlay-panel .close-btn:hover {
  color: #000;
}

.plugBoxMainNew {
      display: flex;
    gap: 6px;
    flex-direction: row;
}

.plugBoxMain {
  background-color: white;
    color: #1976d2;
    border: none;
    border-radius: 10px;
    padding: 0px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s 
ease;
    display: flex;
    align-items: center;
    word-break: break-word;
    text-align: left;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 10px;
    font-weight: normal;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 156px;
}

/*.plugBoxMain {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    float: right;
    padding: 6px 12px;
    cursor: pointer;
    width: 100%;
    max-width: 160px;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #d3d3d300;
    height: 200px;
    font-weight: normal;
    border-radius: 10px;
    background: white;
}*/

.followView {
  display: block;
    padding: 6px 12px;
    background-color: transparent;
    color: rgb(81, 166, 245);
    border-radius: 25px;
    cursor: pointer;
    width: 124px;
    max-width: 110px;
    border: 1px solid rgb(81, 166, 245);
}

.followView:hover {
  background: rgb(81, 166, 245);
  color: white;
}

.plugView {

    padding: 6px 12px;
    background-color: rgb(81, 166, 245);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: 124px;
    max-width: 110px;
}


.search-area {
  margin-top: 1rem;;
}
/* Floor List Styling */
.floor-list {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}

.floor-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
}

.floor-list li:last-child {
  border-bottom: none;
}

/* Close Button Styling */
.overlay-panel .close-btn {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  text-align: right;
}

/* Icon Hover Styling */
.icon-wrapper:hover i {
  color: #51a6f5;
}

.points-row:hover{
  background: #f0f0f0;
}

/* Overlay (full height panel on right) */
    .map_content_overlay {
      position: absolute;
      top: 0;
      right: 0;
      width:100%;
      height: 83%;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 8px;
      padding: 8px;
      color: #111827;
      font-size: 15px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 2;
      margin-right: 0.2rem;
    }

    .map_content_overlay.closed {
      transform: translateX(200%);
    }

    .map_content_overlay h3 {
      margin: 0 0 10px 0;
      font-size: 18px;
      font-weight: 600;
    }

    .map_content_overlay p {
      margin: 0 0 12px 0;
      font-size: 14px;
      color: #374151;
    }

    /* Side Tab */
    .map_content_side-tab {
      position: absolute;
      left: -2px;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border-radius: 9999px 0 0 9999px;
      cursor: pointer;
      transition: background 0.3s;
      user-select: none;
      z-index: 10000;
    }

    

#floorMainDetails {
 font-size: 12px;
}


.nav-btn {
  display: flex;
  background: none;
  border: none;
  font-size: 18px; /* icon size */
  cursor: pointer;
  color: #333;
  transition: transform 0.2s, color 0.2s;
  padding: 0;
}

.overlay-div {
  transform: translateZ(0); /* triggers GPU layer */
  will-change: opacity, transform;
}

.overlay-div,
.overlay-panel.search-panel {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.overlayhidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(30px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease;
}



.nav-btn:hover {
  transform: scale(1.2);
  color: #007bff;
}
#nav-icons {
  display: flex;
  gap: 44px;
  align-items: center;
  margin-left: 4px;
}
#xfloorBlockActiveTitle i{
  display: none;
}

 .pin-icon {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: green;
    font-size: 18px;
    transition: transform 0.2s 
ease;
    cursor: pointer;
    right: 6px;
    position: absolute;
    z-index: 99;
}

@media (max-width: 768px) {

  .icon-wrapper .label {
    display: none;
  }

  .bottom-bar {
    padding: 6px 10px;
    flex-direction: column;
    right: 8px;
  }

   .map_content_overlay {
        width: 100%;
        padding: 8px;
      }
      .map_content_side-tab {
        height: 60px;
        width: 24px;
        font-size: 16px;
      }

      .icon-wrapper .overlay-panel.active, #floorsContainer .overlay-panel.active {
        left:50%;
        position: fixed;
      }
   #xFloorShareIcon {
      color: white !important;
    }

     #followers_badge {
      color: white !important;
    }

     #badge {
      color: white !important;
    }

    #tokenlabel {
      color: white !important;
    }

    #settingIcon {
      color: white !important;
    }
  .footer-bottom-row div {
    color: white !important;
}

  .chatdialog {
    display: none;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 20px;
    padding: 20px 15px 12px;
    flex-direction: column;
    gap: 6px;
    width: 90%;
    bottom: 22%;
  }

  #chip_map .fed-performance-index-tree {
    /*height: 38rem !important;*/
  }

  #chip_map .fed-path-header {
    top: 0rem !important;
    margin-left: 0;
  }

  #chip_map #fedLeafNodeLayout {
    width: 100%;
  }

  #chip_map #leafWrapper {
    width: 100%;
  }

  #footer_floor_div .message-content {
    width: 72% !important;
  }

  #agent_container {
    float: left;
    display: none;
    gap: 8px;
    text-align: left;
    width: 100%;
    padding: 0%;
    align-items: center;
    color: #4f5b66;
    padding: 10px;
  }

  /* Hide scrollbar by default */
  #chat_messages,
  #floorMainContent {
    scrollbar-width: none;
    /* Firefox */
    scrollbar-color: lightgray transparent;
  }

  #footer_floor_div {
    float: left;
    display: flex;
    color: #4f5b66;
    width: 90%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0%;
  }

  .community_messages #floorMainContent,
  #chat_messages {
    padding: 0%;
  }

  .sidebar ul {
    height: 100%;
  }

  .ai .chat-bubble {
    width: 100%;
    margin: 0;
  }

  .chat-bubble {
    max-width: 100%;
  }

  .chat-main {
    width: 100%;
  }

  .sidebar {
    /*width: 250px;*/
    position: fixed;
    left: 0;
    transform: translateX(-260px);
    border: none;

  }

  .sidebar.active {
    transform: translateX(0);
    z-index: 10000;
    background: transparent;
    margin-top: 0.4rem;
    height: 97.5%;
    width: 100%;

  }
  
  .bottom-bar {
        bottom: 6px;
  }

  #sidebar-content {
    height: 100%;
    width: 250px;
    background: rgba(0, 0, 0, 0.65);
    border-bottom-right-radius: 18px;
    border-top-right-radius: 18px;
    padding-top: 5px;
  }

  #blockContent {
    height: 36%;
  }

  .menu-btn {
    display: block;
  }

  .payment-prompt {
    width: 90%;
    height: auto;
    overflow: auto;
  }

  .ai-info-heading {
    font-size: 1rem;
  }

  .chat-initial-heading {
    font-size: 1rem;
  }

  #srmAIModal {
    top: 5px;
  }

  .community_messages,
  .chat-initial-message-container-div,
  .chat-input-container,
  .message-container {
    width: 100%;
  }
   .community_messages{
    padding: 0px 3px;
   }

  #extra-buttons-container {
    width: 84%;
    left: 8%;
  }

  #chat_federated_div, #chip_map {
    display: flex;
    float: left;
    width: 100%;
    height: 0%;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin-top: 8px;
    transform: scale(0);
  }

  #blockContent #floorBlocksMenu {
    flex-direction: column;
    align-items: start;
  }

  .title-desc-wrapper {
    max-width: 150px;
  }

  .icon-wrapper .overlay-panel, #floorsContainer .overlay-panel {
    position: fixed;
    bottom: 89px;
  }

  .floor-list {
    max-height: 110px;
  }

  .plugBoxMain {
        width: 120px;
    height: 156px;
  }
  #treeViewMain {
    position: fixed;
    top: 6%;
    left: 0;
    width: 100%;
    height: 82%;
    background: transparent;
    transform: translateX(-100%);
    
  transition: height 0.65s ease-in-out;
    z-index: 1000;
    
  margin-right: 0rem;
position:relative;
top:0;
  }

  #treeViewMain.active {
    transform: translateX(0);
  }

  #treeView {
    height: 81%;
  }

  .floating-tree-btn {
    display: block;
  }

  #chat_main {
    /*flex: 1;*/
    width: 100%;
    flex: none;
    padding: 0 10px;
    -webkit-overflow-scrolling: touch; /* smooth momentum scrolling */
     
  }

  #suggestionsToogle-button,
  #suggestions-chat-button,
  #dynamic-buttons{
    width: 30%;
  }
  #chatContainerDiv{
    width: 100%;
  }


  #chatWrapperDiv {
    display: flex;
    flex-direction: column-reverse;
    height: 100vh;
    overflow: hidden;
  }

  /*.chat-main,
  #treeViewMain {
    transition: height 0.35s ease-in-out;
    flex-shrink: 0;
  }*/

 #chat_main {
  transition: height 0.65s ease-in-out; /* animate height changes */
  flex-shrink: 0;
}

#treeView {
 /* overflow: hidden;*/
  transition: height 0.65s ease-in-out;
  flex-shrink: 0;
  
}


  /* Default split */
  .mobile-half .chat-main {
    height: 56%;
  }
  .mobile-half #treeViewMain {
    height: 44%;
    display: flex;
    position: relative;
    top: 0;
  }

  .mobile-half #treeView{
    height: 98%;
  }
  /* Chat full */
  .mobile-chat-full .chat-main {
    height: 100%;
  }
  .mobile-chat-full #treeViewMain {
    height: 0;
    overflow: hidden;
  }

  .chat-input-container{
   /* height: 4rem !important;*/
  }

  .chat-drag-handle {
    height: 6px;        
    width: 20%;          
    background-color: rgba(0, 0, 0, 0.75); 
    border-radius: 3px;       
    margin: 10px auto;          
  }

  .chat-drag {
    width: 98%;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 2px 8px;
    flex-direction: column;
    background-color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .chatTab, .postsTab{
      width: 48%;
      display: flex;
      flex: 1;
      padding: 10px;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 14px;
      color: #333D42;
      transition: background-color 0.3s, color 0.3s;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
  }
  .bottom-bar{
    position: fixed;
    flex-direction: column;
    right: 8px;
    bottom: 24px;
    transition: opacity 0.5s ease;
    opacity: 1;
    display: none;
  }
  .bottom-bar-floating-menu{
    display: flex;
    position: fixed;
    right: 8px;
    bottom: -28px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s;
  }

  .icon-wrapper .label {
    display: none;
  }

  #search-btn{
    display: flex;
  }
  #nav-icons{
    width: 100%;
    justify-content: space-between;
    gap: unset;
  }
  .nav-btn{
    padding: 10px 20px;
  }

  .chat-initial-chips1{
    display: none;
  }
  .chatTab.active i, .postsTab.active i{
    color: white !important;
  }

  #xfloorBlockActiveTitle i{
    display: flex;
  }

  .chat-initial-chips,.chat-initial-chips1{
    gap: 12px;
  }

  .chat-drag,
#chatWrapperDiv,
.chat-main,
#treeViewMain {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}


}
