.floor-main-container {
  display: flex;
  flex-direction: row; 
  background-color: white;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  width: 100%; /* Updated */
  height: 100%;
  padding-left: 2px;
  padding-right: 2px; 
  padding-bottom: 2px;
  padding-top: 10px;
  position: relative;
  display: none;
}

.floor-details-panel {
  /* ... */
  overflow: hidden;
  width: 24%;
  display: flex; /* Updated */
  flex-direction: column;
  position: relative;
  height: 100%;
  justify-content: end;
}

.floor-root-header-graph,
.floor-root-header {
  width: 100%;
  height: 64%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 80px; /* Added */
  margin-bottom: 70px;
}

.floor-logo-container-graph {
  width: 60px;
  height: 60px;
  display: block;
  align-items: center;
}

.floor-logo-container {
  width: 200px;
  height: 200px;
  display: block;
  align-items: center;
}

.floor-logo-graph,
.floor-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Added */
  border-radius: 10px;
  padding: 2px; 
} 

.floor-title-desc-container-graph,
.floor-title-desc-container {
  text-align: center;
  width: 90%;
}

.floor-details-container-graph,
.floor-details-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  padding: 4px;
  align-items: center;
  justify-content: space-evenly;
}

.wrapped-title-graph,
.wrapped-description-graph,
.wrapped-title,
.wrapped-description,.wrapped-title-leaf,
.wrapped-description-leaf {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.wrapped-title-graph {
  width: 150px;
}

.wrapped-title-graph,
.wrapped-title,.wrapped-title-leaf {
  margin-bottom: 4px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}

.wrapped-title {
 font-size: 1.125rem;
 font-weight: bold;
}

.wrapped-title-leaf {
  font-size: 2.125rem;
  font-weight: bold;
 }

.wrapped-floorid {
  color: var(--text-details-color);
  text-overflow: ellipsis;
  margin-bottom: 4px;
  font-size: 12px;
}

.wrapped-description,.wrapped-description-leaf {
  margin-bottom: 4px;
  color: #333D42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.backToMain {
  cursor: pointer;
}

.post-desc-details {
      font-size: 1rem;
          font-family: var(--global-font-family);
    font-weight: normal !important;
        line-height: 1.5;
        display: flex;
        justify-content: center;
}
.post-desc-details ul li {
    font-size: 1rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: none;
    margin-bottom: 0px;
    color: #333D42;
    cursor: auto;
    line-height: 1.5;
    font-family: var(--global-font-family);
    font-weight: normal !important;
    margin: 0.5rem;
    margin-left: 2rem;
}

.floorGraphLabel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.floorGraphLabel-left {
  flex: 1;
  align-items: center;
}

.floorGraphLabel-left {
  display: flex;
  align-items: center;
}

.fedGraphLabel-header-icon {
  font-size: 18px;
  cursor: pointer;
  color: gray;
}

.floor-stat-banner-graph{
  display: none;
  justify-content: center;
  align-items: center;
  width:58%;
}

.floor-stat-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width:58%;
}

.floor-page-followers-details {
  display: flex; flex-direction: row; justify-content: space-between; width: 100%; margin-top: 0px;
}

.floor-follower-count-graph,
.floor-follower-count {
  display: flex;    
  align-items: center;
}

.floor-follower-count .fa-sharp fa-light {
  margin-right: 10px;
}

.floor-blocks-container {
  /* ... */
  width: 100%;
  display: flex; /* Updated */
  height: 100%;
  flex-direction: column;
  justify-content: start;
  margin-top: 10px;
  display: none;
}

.block-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Optional: Aligns the elements vertically */
  display: none;
}

.block-header-wrapper h2 {
  padding-top: 0px;
}

.toggle-block-btn {
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: none;
  
  padding: 8px 8px;
  background-color: #699CD3;
  color: #FFF;
  border-radius: 5px;
  margin-right: 10px;
}

.toggle-block-btn:hover {
  color: #3a78c2;
}

.toggle-block-btn:focus {
  outline: none;
}

/* BLOCKS Container */
.blocks-container {
  /*display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  justify-content: space-between;
  width: 100%;*/
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  overflow-y: scroll;
  display: none;
}

.block-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  overflow-y: scroll;
}

.block-item {
  padding: 5px 10px 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  background-color:  #F2F2F2;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap; /* Prevent the text from wrapping to the next line */
  color: #242424;
  font-family: var(--global-font-family) !important;
}

.block-item:hover {
  background-color: #e9ecef;
}

.block-item.selected {
  
  left: 0;
  bottom: 0;
  position: relative;
  width: auto;
  height: auto;
  border: 1px solid rgb(36, 36, 36);
}
/*END of BLOCKS Container*/

.floor-post-form {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 5px;
  max-height: 0; /* Added for smooth animation */
  transition: max-height 0.5s ease-in-out; /* Added for smooth animation */
}

.floor-post-form.expanded {
  flex-grow: 1;
  max-height: none;
}


.floor-blocks-container h2 {
  text-align: left;
  padding-left: 10px;
  padding-top: 0.5rem;
}

.floor-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: gray;
    font-size: 8px;
}

.floor-form-group input,
.floor-form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}

.attachment-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
}

.submit-btn {
  background-color: transparent;
  border: 1px solid #007bff; /* Adjust the border color to match your design */
  border-radius: 4px; /* Adjust the border radius for rounded corners */
  padding: 4px 8px;
  font-size: 1.25rem;
  color: #007bff; /* Adjust the color to match your design */
  cursor: pointer;
}

.submit-btn:hover {
  color: #0056b3;
}

.submit-btn:focus {
  outline: none;
}

/* IF NO POSTS... display gif */
.empty-message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative; /* Make it an absolutely positioned element */
  top: 40%; /* Position it at 50% from the top */
  left: 50%; /* Position it at 50% from the left */
  transform: translate(-50%, -50%); /* Center the element */
}

.empty-message-gif {
  object-fit: contain; /* Resize the image to fit within the container while maintaining its aspect ratio */
  max-width: 200px;
}

.empty-message-text {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.floor-content-container {
  width: 76%;
  height: 100%;
  position: relative;
  flex-direction: column;
  align-items: flex-start; /* Add this line */
  background-color: white; 
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  margin-left: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.floor-content-header-graph {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; /* Optional: Aligns the elements vertically */
  gap: 10px;
}

.floor-content-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center; /* Optional: Aligns the elements vertically */
  padding-left: 10px;
}

.floor-Btn-graph {
  padding: 8px 8px;
  border: none;
  background-color: #699CD3;
  color: #FFF;
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
}

.floor-post-new-btn {
  padding: 4px 8px;
  border: none;
  background-color: #699CD3;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.fed-new-post-btn
 {
  padding: 4px 8px;
  border: none;
  background-color: #007BFF;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

.floor-Btn {
  padding: 4px 8px;
  border: none;
  background-color: black;
  color: #FFF;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 25px;
  padding-left:12px;
  padding-right:12px;
}

.pdf-button {
  display: block;
  margin-top: 10px; /* Adjust the space as per your requirement */
  font-size: 14px; /* Adjust the font size as per your requirement */
  background-color: rgb(200,40,40); /* Adjust the button color as per your requirement */
  color: white; /* Adjust the button text color as per your requirement */
  padding: 10px; /* Adjust the button padding as per your requirement */
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 21%;
  border-radius: 16px;
  padding: 4px;
  margin-bottom: 8px;
}

.pdf-button:hover {
  background-color: #699CD3;
}

.pdf-error {
  margin-top: 10px;
  font-size: 16px;
}

.post-new-comment-div {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  /*background-color:  #00000012;  */
  margin-bottom: 0px;
  margin-top: 0px;
  border-radius: 2px;
}

.floor-footer {
  width: 100%;
  height: 10%;
  flex-direction: column;
  align-items: end;
  display: flex;
  justify-content: center;
}

.floor-newpost-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.floor-post-form-group {
  height: auto;
}

.floor-post-message-div {
  height: 10rem;
}

.floor-post-media-status {
  width: 100%;
  height: 8%;
}

.floor-post-message {
  width: 100%;
    background: #f8fafc !important;
    border: 1px dashed #d1d9de !important;
    border-radius: 10px !important;
    padding: 12px !important;
    color: #6b7280 !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 17px;
}

/*.floor-post-message {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  resize: none;
  margin-top: 2px;
  font-size: 14px;
  height: 99%;
}*/

.floor-post-submit-btn {
  background-color: #699CD3;
  border: 1px solid #699CD3; /* Adjust the border color to match your design */
  border-radius: 16px; /* Adjust the border radius for rounded corners */
  padding: 8px 16px;
  font-size: 16px;
  color: white; /* Adjust the color to match your design */
  cursor: pointer;
  margin-right: 5px;
  margin-bottom: 10px;
}

.floor-post-submit-btn:hover {
  background-color: #007bff;
  color: white;
}

.floor-post-submit-btn:focus {
  outline: none;
}

emoji-picker-floor {
  display: none;
  position: absolute;
  /* Adjust the position values as needed */
  bottom: 0px;
  left: 10%;
  z-index: 1000;
  height: 100%;
}

.comment-header-div {
  width: 100%;
  height: 40px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: transparent;
  z-index: 999;
  margin-bottom: 10px;
  margin-top: 0px;
  padding-right: 10px;
  align-items: center;
}

.close-comments {
  width: 32px;
  height: 32px;
  position: fixed;
  display: flex;
  background-color: rgb(200,50,50);
  z-index: 999;
  padding: 10px;
  bottom: 1%;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  left: 12px;
}

.floor-blocks-header {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: white;
}

.floor-blocks-subheader {
  color: black; text-align: left; width: 100%; padding: 10px; padding-top: 16px;
}

.floor-blocks-menu-container {
  display: flex; flex-direction: column; justify-content: start; width: 100%;
}

.floor-blocks-icons {
  display: none;
}

.floor-blocks-menu {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: transparent;
  z-index: 999;
  overflow-y: scroll;
  align-items: start;
  margin-left: -10px;
  margin-top: 10px;
}

.hidden-icon {
  display: none !important;
}


.main-comments-container {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background-color: rgba(32, 32, 32, 0.94);; /* Black w/ opacity */
  z-index: 100005;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.comments-container {
  display: flex;
  width: 50%; /* Updated */
  height: 100%;
  position: relative;
  align-items: flex-start; /* Add this line */
  overflow-y: scroll;
  flex-direction: column;
  padding: 20px;
  background-color: white; 
}

.fed-wall-comments-container,
.profile-wall-comments-container,
.floor-page-comments-container {
  display: none;
  width: 100%; /* Updated */
  height: 100%;
  position: relative;
  align-items: flex-start; /* Add this line */
  overflow-y: scroll;
  flex-direction: column;
  padding-left: 20px;
  background-color: white; 
}

.floor-content{
  /* ... 
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);*/
  display: flex;
  width: 100%; /* Updated */
  height: 100%;
  position: relative;
  align-items: flex-start; /* Add this line */
  overflow-y: scroll;
  flex-direction: column;
  background-color: transparent; 
}

.floor-post-container{
  /* ... 
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);*/
  display: flex;
  width: 100%; /* Updated */
  height: 94%;
  position: relative;
  align-items: flex-start; /* Add this line */
  overflow-y: scroll;
  flex-direction: column;
  background-color: transparent; 
}

.results-content-container{
  display: none;
  width: 100%; /* Updated */
  position: relative;
  align-items: flex-start; /* Add this line */
  overflow-y: scroll;
  flex-direction: column;
  background-color: white; 
}


.floor-sessions-div,
.floor-post-div,.reply-inner-container {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  padding: 0px;  
  border-color: #d3d3d33b;
  width: 100%;
  background-color: #d3d3d300;
  padding: 24px 40px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: white;
}

.sessions-content-div {
  display:flex;width:86%;flex-direction:row;gap:10px; justify-content:start;margin-left: 50px;
}

.sessions-title-details-div {
  margin-left:6px !important; display: flex; flex-direction: column; justify-content: center;
}

.fed-icon-div {
  position: absolute;
  top: 56px;
  left: 22px;
  display: flex;
  width: 30px;
  height: auto;
}

#fed-icon-div i:hover {
  color: red;
}

.fed-quizle-result-icon {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center; /* aligns the content horizontally */
  align-items: center; /* aligns the content vertically */
  opacity: 0.5;
  pointer-events: none;
  z-index: 10;
}

.quizle-result-watermark-icon {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center; /* aligns the content horizontally */
  align-items: center; /* aligns the content vertically */
  opacity: 0.5;
  pointer-events: none;
  z-index: 10;
  margin-left:50px;
}

.floor-sessions-div:hover,
.floor-post-div:hover {
  /*background-color: #F7F9F9; /* Background color on hover */
}
.reply-inner-container:hover{
  background-color: #e8e7e7;
}
.session-join-floor,
.session-block-speakers {
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-top: 10px;
}
.session-join-btn{
  background-color: #007BFF;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.session-join , #session-join{
  /* Add any additional styles for the logout button */
  background-color: #51a6f5;
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 5px;
  width: 160px;

}

.author-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-author-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  margin-bottom: 4px;
  justify-content: space-between;
  padding-right: 10px;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.post-menu-options {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.post-date, .comment-post-date {
  font-size: 14px;
  color: var(--text-details-color);
  float: left;
}

.post-date .author-name {
  color: #333D42;
  font-weight: 600;
  font-size: 0.75rem;
}

.author-name {
  float : left;
  padding: 2px 8px; /* Adjust padding to your preference */
  display: inline-block; /* Ensure the element respects padding and border radius */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; /* Shows dots (...) when text overflows */
}


.post-header-floor-details {
  float : left;
  padding: 0px 0px; /* Adjust padding to your preference */
  background-color: #f0f0f0; /* Background color for the rounded rectangle */
  border-radius: 6px; /* Rounded corners */
  margin-right: 0px; /* Space between the elements */
  display: inline-block; /* Ensure the element respects padding and border radius */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; /* Shows dots (...) when text overflows */
  font-size: 0.75rem;
}

.post-in-block-details {
  float : left;
  padding: 2px 8px; /* Adjust padding to your preference */
  margin-right: 0px; /* Space between the elements */
  display: inline-block; /* Ensure the element respects padding and border radius */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; /* Shows dots (...) when text overflows */
  font-size: 0.75rem;
  padding-left: 0px;
}

.clearfix-floor-content {
  display: flex;
  gap: 0px;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-right: 10px;
  padding-left: 10px;
  margin-top: 10px;
}

.clearfix-floor-content > div {
  flex-grow: 1;
  margin-left: 0px;
}

.clearfix-floor-content.with-media > div:nth-child(1) {
  flex-basis: 70%;  /*R70%  L25%*/
  flex-direction: column;
}

.clearfix-floor-content.with-media > div:nth-child(2) {
  flex-basis: 100%;  /*R30%  L70%*/
  display: flex;            /* Add display: flex; */
  justify-content: flex-end; /* Add justify-content: flex-end; */

  justify-content: center; /* comment this */
  flex-direction: column; /* comment this */
}

.media-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

.media {
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 16px;
  max-height: 200px;
  max-width: 100%;
  border-radius: 8px;
}

.content_min_height {
  -webkit-line-clamp: 6 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.media.double {
  width: 50%;
  object-fit: cover;
  border-radius: 0px;
}

.media.triple-wide {
  width: 50%;
  object-fit: cover;
  border-radius: 0px;
}

.media.triple-narrow {
  width: 50%; 
  max-height: 230px;
  object-fit: cover;
  border-radius: 0px;
}

.media.quad {
  width: 50%;
  max-height: 100px;
  object-fit: cover;
  border-radius: 0px;
}

.media.double,
.media.triple-wide,
.media.triple-narrow,
.media.quad {
  box-sizing: border-box;
  border: 2px solid #765f5f00
}


/*.media {
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 16px;
  max-height: 460px;
  max-width: 100%;
}*/

/*
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 10px;
  max-width: 100%;
}

.media-grid.single {
  grid-template-columns: 1fr;
}

.media-element.media {
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 16px;
  max-height: 460px;
  max-width: 100%;
}*/

.media-viewer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100006;
  cursor: grab;
}

.media-viewer-modal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s;
  position: absolute; /* Allow for positioning */
}

.floor-session-title,
.floor-post-title {
  font-size: 16px;
  font-weight: 600;
  margin-left: 0px;
  margin-bottom: 5px  ;
  color: var(--text-color);
  cursor: auto;
  font-family: var(--global-font-family) !important;
}

.floor-session-details,
.floor-post-details {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: none;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0px;
  color: #333D42;
  cursor: auto;
  max-height: 200px; /* Adjust as per requirement. 68px roughly equals 3 lines of 14px text */
  transition: max-height 1s ease-in-out;
  line-height: 1.5;
  font-family: var(--global-font-family);
  font-weight: normal !important;
}

.floor-session-details {
  color: gray; margin-bottom:0px;
  font-size: 1rem;
}

.floor-post-details {
  width: 100%;
}

.floor-session-details.show-more,
.floor-post-details.show-more {
  max-height: 2500px; /* This value should be higher than the full content's height */
}

.more-post-details-button {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
  color:  rgba(0, 123, 255, 0.6);
  font-size: 16 px;
  align-items: center;
  display: none;
  cursor: pointer;
}

.interactions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-details-color);
  margin-top: 12px;
  margin-left: 0px;
  padding-right: 10px;
  margin-bottom: 6px;
  padding-left: 10px;
}

.custom-audio-player {
  height: 40px;
  width: 100%;
  background-color: var(--bg-input-box-color);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: 10px;
}

.custom-audio-player audio {
  height: 100%;
  width: 100%;
}

.video-media {
  width: 100%;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 16px;
  background-color: black;
  margin-bottom: 10px;
}


@keyframes fadeInScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add this to your CSS file */
.transition {
  transition: opacity 0.5s ease-in-out;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.visible {
  opacity: 1;
  visibility: visible;
}

#titleWhenMinimized {
  color: black;
  line-height: 40px;
  align-items: center;
  text-align: center;
  padding-left: 0px;
}

.floor-fed-panel {
  width: 24px;
  height: 24px;
  position: relative; 
  cursor: pointer; 
  color: gray;
  display: none;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
}

.floor-footer-panel {
  width: 100%;
  height: auto;
  position: relative; 
  cursor: pointer; 
  color: gray;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4px;
  height: 6rem;
  padding-left: 10px;
  padding-right: 10px;
  align-items: center;
}

.floor-share-btn {
  padding: 8px 4px;
  border: none;
  background-color: transparent;
  color: darkgray;
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 4px;
}

#openFloorHomePage {
  position: relative; cursor: pointer; color: darkgray;
}

#shareFloorPage {
  position: relative; cursor: pointer; color: gray;
}

#backToGraph {
  position: absolute; left: 10px; top:10px; cursor: pointer; color: gray; z-index: 999; font-size: 20px;
}

#floorUserLogo {
  position: absolute; border-radius: 16px; right: 40px; top:10px; cursor: pointer; color: gray; z-index: 999;  width: 30px; height: 30px
}

#floor-page-loginBtn
{
  display: none;
  float: right;
  width: 52px;
  right: 38px;
  margin-right: 4px;
  border-radius: 12px;
  border: none;
  position: absolute;
  top: 12px;
  padding: 6px;
}

.floor_menu
{
  position: absolute;
  right: 10px;
  top: 14px;
  cursor: pointer;
  width: 21px;
  text-align: center;
}
#menuBtn
{
  color:black;
}

.fed_menu
  {
    position: relative;
    right: 3.6rem;
    cursor: pointer;
    width: 20px;
    text-align: center;
    justify-content: end;
  }
  #fed_menuBtn
  {
    color: white;
  }

  .file-preview > div {
    flex: 1; /* Ensures equal space for all child divs */
    position: relative;
    margin: 10px;
    box-sizing: border-box; /* Ensures padding and borders are included in width */
  }
  .file-container
  {
    height: 240px;
  }
/******************************************************SDFDFSDFSD **/

@supports not (-moz-appearance: none) {
  .file-preview {
    /*max-width: 140px;*/
  }
}

.rounded-left {
  border-radius: 0 0 0 0;
}

.rounded-right {
  border-radius: 0 0 0 0;
}

.blocks-header
{
  display: flex;
  width: 100%;
  align-items: start;
  text-align: start;
}

#blocksTitle
{
  float: left;
  width: 94%;
}

#block-add
{
  float: right;
  margin: 0;
  font-size: 1.2rem;
  color: #007bff;
  cursor: pointer;
  display:none;
}

.floor-path-panel {
  display: none; align-items:start; flex-direction: column; justify-content: space-between;
  position: relative;
  left: 0px;
  top: 0px;
  background-color: transparent;
  width: 100%;
  height: 40px;
  align-items: start;
  overflow-x: auto;
}

.floor-top-panel {
  display: flex; align-items:start; flex-direction: column; justify-content: space-between;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: transparent;
  width: 100%;
  height: 40px;
  align-items: start;
  overflow-x: auto;
}

#floorPathLink {
  font-size: 12px;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 10px;
}

.path-connector {
  display: inline-block;
  position: relative;
  width: 20px; /* Width of the line */
  margin-bottom: 4px;
  margin-right: 0px;
  margin-left: 0px;
  font-weight: normal;
}

.path-connector::after {
  content: '>';
  position: absolute;
  top: 50%; /* Center vertically */
  left: 0;
  right: 0;
  border-top: 1px solid transparent; /* Line appearance */
  transform: translateY(-50%);
}



#floor_location
{
  color:black;
  margin-left: 12px;
  display:none;
}

#floor_share
{
  color:black;
  margin-left: 12px;
}

#fed-views {
  color: gray;
  margin-left: 12px;
}

.floor-follower-count:hover{
  text-decoration: underline;
}

#floor-views
{
  color:gray;
}

.close-icon i {
  color: white !important;
}

.fed_menu_options {
  display: none;
  position: absolute;
  top: 30px;
  right: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 172px;
  min-width: 172px;
  max-height: 200px;
  overflow: auto;
  z-index: 10000;
}

.menu-inner
{
  background: #f0f0f0;
  border-radius: 24px;
  padding-left: 2px;
  padding-right: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-left: 4px;
  display:none;
  font-size: 0.6rem;
}

#closeBellOverlayIcon i {
  color: black !important;
}

#closeQrOverlayIcon i 
{
  color: black !important;
}
#fedPathLink {
  font-size: 16px;
  color: #007bff;
  font-weight: bold;
  gap: 2px;
  cursor: pointer;
}

  .styled-area {
    color: #007bff; /* Make the link color blue */
    padding: 2px 8px;
    background-color: #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
  }

  .styled-area:hover {
      text-decoration: none; /* Keep underline on hover */
  }

  .styled-url-icon {
      color: #007bff;
      text-decoration: none;
  }

  .styled-url-icon i {
      font-size: 16px;
  }

  .styled-url-icon:hover {
      color: #0056b3;
  }

.one_one_session
{
    float: left;
    width: 82%;
    margin-left: 50px;
    background: #2196f333;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
}

.one_one_left_status
{
  color: #007bff;
  float: left;
  width: auto;
  font-size: 14px;
}

.one_one_right_status
{
  float:right;
}

.floor-top-logo
{
  float: left;
  margin: 0;
  width: 42px;
  height: 42px;
}

.post-header-right
{
  float: right;
  display: flex;
  margin-right: 0;
}
#floor-loginBtn-postPage,#floor-appBtn-postPage
{
    display: block;
    margin-left: 12px;
    font-size: 12px;
    background-color: #51a6f5;
    color: white;
    border-radius: 25px;
    border: none;
}
#postPage-Header
{
  float: left;
    width: 100%;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    margin-bottom: 10px;
    margin-top: 0px;
    align-items: center;
}
.leafWrapper
{
  float: left;
  width: 97%;
  height: 73%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 16px;
  margin-left: 0;
}

.postCommentMain {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  /*height: 78vh;*/
  transition: all 0.4s ease;
}

.postCommentLeft {
  float: left;
  width: 100%;
  /*height: 78vh;*/
  overflow-y: auto;
  transition: width 0.4s ease;
}

.postCommentRight {
  float: left;
  width: 414px;
  overflow-y: auto;
  transition: all 0.4s ease;
   position: fixed;
    float: right;
    right: 0;
    height: 100vh;
    background: white;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    z-index: 1;
}

/* Collapsed state */
.postCommentMain.collapsed .postCommentRight {
  display: none;
}

.postCommentMain.collapsed .postCommentLeft {
  width: 100%;
}

/* Expanded state */
.postCommentMain.expanded .postCommentLeft {
  width: 78%;
}

.postCommentHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    padding: 12px;
}

.postCommentHeaderLeft {
    font-weight: 600;
    color: #333;
    font-size: 20px;
}

.postCommentHeaderRight button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.postCommentHeaderRight button:hover {
    transform: scale(1.1);
    color: #e00;
}

/* Elegant toggle button */
.comment-toggle-btn {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  cursor: pointer;
  background: #51a6f58a;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.comment-toggle-btn:hover {
  background: #51a6f5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.05);
}

/* Icon animation */
.comment-toggle-btn i {
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: black !important;
}

.postCommentMain.expanded .comment-toggle-btn i {
  transform: rotate(180deg);
  color: #007bff;
}

.grid-containerMain_label {
    float: left;
    color: gray;
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 12px;
}

.grid-containerMain_label a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.grid-containerMain_label a:hover {
  text-decoration: underline;
}


.grid-containerMain {
  float: left;
  width: 100%;
  border-top: 1px solid lightgray;
  margin-top: 21px;
  padding: 14px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 8px;
  max-width: 1200px;
  width: 100%;
}
.comment_gallery_post {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 300px;
}
.comment_gallery_post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 1;
}

.comment_gallery_image-container {
  width: 100%;
  height: 200px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment_gallery_image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment_gallery_image-container.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
}

.comment_gallery_placeholder-text {
  padding: 10px;
  text-align: center;
}

.comment_gallery_post-content {
  padding: 15px;
  text-align: center;
}
.comment_gallery_post-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}
.comment_gallery_post-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}
.cta {
  background-color: #3897f0;
  color: white;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-top: 1px solid #ddd;
  transition: background-color 0.3s;
}
.cta:hover {
  background-color: #287dc2;
}
/* Overlay Styles */
.comment_gallery_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.comment_gallery_post:hover .comment_gallery_overlay {
  opacity: 1;
}
.comment_gallery_icons {
  display: flex;
  gap: 20px;
  color: white;
  font-size: 20px;
}
.comment_gallery_icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.comment_gallery_icon span {
  color: white !important;
}

#fed_ai_btn{
  margin-left: 8px;
  margin-top: 4px;
  padding: 4px;
}
#ai_btn, #fed_ai_btn {
  display: flex;
  background: #52a6f5 !important;
  padding: 8px 8px;
  border-radius: 8px;
  position: relative;
  right: 0;
  z-index: 1;
  align-items: center;
  width: auto;
  float: left;
  cursor: pointer;
}

#aiEnableOverlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

#aiEnableContainer{
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 400px;
}

#floorAIDescriptionInput{
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  resize: none;
  outline: none;
}

.AIEnableSubmitButton{
  padding: 8px 12px;
  border: none;
  background: #4CAF50;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.AIEnableCloseButton{
  padding: 8px 12px;
  border: none;
  background: #f44336;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes cursorBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); } /* Moves cursor up slightly */
}

.animate-btn, .fed-animate-btn {
  position: relative;
  animation: pulse 1.5s infinite ease-in-out;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}


.animate-btn::before, .fed-animate-btn::before {
  content: "👆";
  position: absolute;
  top: 30px; 
  left: 20%;
  transform: translateX(-50%);
  font-size: 32px; 
  animation: cursorBounce 1.2s infinite ease-in-out; 
}


.animate-btn::after, .fed-animate-btn::after {
  content: "Click Here!";
  position: absolute;
  top: 70px; 
  left: 20%;
  transform: translateX(-50%);
  font-size: 14px;
  color: gray;
  padding: 2px 6px;
  border-radius: 16px;
  white-space: nowrap; 
  animation: cursorBounce 1.2s infinite ease-in-out;
}

.fed-animate-btn::before{
  font-size: 24px;
  left: 35%;
}

.fed-animate-btn::after{
  color: white;
  top: 36px;
  left: 65%;
}

p.floor-post-title, p.comment_gallery_post-title {
    font-size: 34px !important;
    line-height: 42px !important;
    font-weight: 800;
}


.post-desc-details p,.comment_gallery_post p {
    font-size: 17px;
    line-height: 28px;
}

.post-desc-details  strong, .comment_gallery_post strong {
  font-weight: bold;
}

.post-desc-details p strong ,.comment_gallery_post p strong {
  font-weight: bold;
}

.post-desc-details blockquote,.comment_gallery_post-description blockquote {
    margin-bottom: calc(24px + 2px);
    margin-left: 0;
    margin-top: calc(-2px);
    padding-left: calc(24px + 3px);
    position: relative;
    font-size: 17px;
    line-height: 28px;
}

.post-desc-details blockquote::before,.comment_gallery_post-description::before {
    background: #37434D;
    border-radius: 9999px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 3px;
}


.evalit-rating-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 12px 0;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  margin-top: 20px;
}

.rate-item-wrapper{
  display: flex;
}

.rate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 28px;
  width: 33%;
}

.rate-label {
  display: flex;
  font-size: 14px;
  margin-top: 4px;
  color: #666;
}

.rate-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.comment-support-container {
  position: relative;
  display: inline-block;
}

.comment-support-bubble {
  position: absolute;
  bottom: 22px;
  left: 0;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  width: 160px;
  z-index: 100;
}

.comment-support-bubble.hidden {
  display: none;
}

.comment-support-div {
  margin-top: 10px;
  font-size: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  color: gray;
  flex-direction: column;
  align-items: center;
}

/* Dark overlay */
.schema-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100005;
}

/* Popup box */
.schema-box {
    position: relative;
    background: #fff;
    padding: 20px;
    width: 50%;
    height: 90%;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.25s ease;
}

/* Close button */
.schema-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.schema-img-wrapper {
    height: 94%;
    border-radius: 10px;
    overflow-y: auto;
}

/* Images */
.schema-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 12px;
    opacity: 1;
    border: 1px solid lightgray;
}

/* Smooth animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.schema-row {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* button right */
    margin-top: 10px;
    margin-bottom: 10px;
}

.view-schema-btn {
    padding: 4px 10px;
    background-color: transparent;
    color: #2979ff;
    border: 1px solid #2979ff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

#quizleMetricsOverlay{
  position : fixed;
  top : 0;
  left : 0;
  width : 100%;
  height : 100%;
  background : rgba(0,0,0,0.6);
  display : none;
  justify-content : center;
  align-items : center;
  z-index : 9999;
  backdrop-filter : blur(3px);
}

#quizleMetricsContentDiv{
  width : auto;
  height : 80%;
  max-width : 90%;
  background : #fff;
  border-radius : 10px;
  padding : 16px;
  position : relative;
  display : flex;
  flex-direction : column;
  overflow: auto;
}


/******************************************************SDFDFSDFSD **/

/* CSS for the mobile view of the left panel */
@media (max-width: 767px) {

  .schema-box{
    width: 90%;
  }

  .post-desc-details p,.comment_gallery_post p {
    font-size: 17px;
    line-height: 28px;
  }


  .postCommentRight {
  float: left;
  width: 100%;
  overflow-y: auto;
  transition: all 0.4s ease;
   position: fixed;
    float: right;
    right: 0;
    height: 100vh;
    background: white;
    top: 0;
    box-shadow:none;
}
  

  .animate-btn::after {
    color: white;
    top: 40px;
    left: 65%;
  }
  .animate-btn::before{
    font-size: 24px;
    left: 35%;
  }
  .leafWrapper
{
  float: left;
  width: 100%;
  height: 76%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  margin-top: 0;
  border-radius: 0px;
  margin-bottom: 0px;
}

  .media-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: scenter;
    max-height: 200px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  #openFloorHomePage {
    position: relative; cursor: pointer; color: white;
  }

  #openFloorHomePage i {
    color: white !important;
  }

  #wrapped_floor_id i{
    color: white !important;
  }

  .floor-content ,.floor-post-container,.results-content-container{
    overflow-y: hidden;
  }



  .fed_menu_options {
    display: none;
    position: fixed;
    top: 42px;
    right: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 172px;
    min-width: 172px;
    max-height: 200px;
    overflow: auto;
  }

  .floor-Btn {
    padding: 4px 8px;
    border: none;
    background-color: white;
    color: black;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 25px;
    padding-left:12px;
    padding-right:12px;
  }

  .wrapped-floorid {
    color: lightgray;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    font-size: 12px;
  }

  #floor_location
  {
    color:white;
    margin-left: 12px;
    display:none;
  }

  #floor_share
  {
    color:white !important;
    margin-left: 12px;
  }

  .floor-main-container {
   /* background-color: white;
    border-radius: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    overflow-y: scroll;*/
    width: 100% !important;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    padding: 0;
  }

  .floor-details-panel {
    width: 100%;
    background-color: white;
    height: 15rem;
    flex-shrink: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
  }

  .floorDetailsPanel-minimized {
    height: 40px;
    transition: all 1s ease-out; /* Transition applies to all animatable properties */
    overflow: hidden;
    max-height: 40px; /* Max height for minimized state */
    opacity: 0; /* Make it fade out */
    visibility: hidden; /* Make it invisible but still taking up space during transition */
  
  }

  .floorDetailsPanel-minimized.active {
    /* Class to be added when you want the panel to be visible */
    max-height: 200px; /* Adjust based on content's actual height */
    opacity: 1;
    visibility: visible;
  }

  #floorTitleWhenMinimized {
    height: 40px;
  }
  
  #titleWhenMinimized {
    color: white;
    line-height: 40px;
    align-items: center;
    text-align: center;
  }
  
  .floor-fed-panel {
    top: 10px;
  }

  .floorDetailsPanel-minimized #floorTitleWhenMinimized {
      display: flex;
      justify-content: center;
  }

  .floorContentContainer-expanded {
      height: calc(100vh - 40px); /* subtracting the height of the minimized panel */
      transition: height 1s ease-out;
  }

  .floor-root-header {
    min-height: 100px;
    margin-bottom: 0px;
    height: 100%;
    flex-direction: row;
  }

  .floor-details-panel.expanded {
    height: 100%;
    filter: none
  }
  
  #floorDetailsPanel, #floorContentContainer {
    transition: all 1s ease; /* This applies a transition effect to all properties over 0.3 seconds in a smooth fashion */
  }

  .wrapped-description {
    font-size: 0.75rem;
    color: white;
    -webkit-line-clamp: 2;
  }

  .floor-logo-container {
    width: 100px;
    height: 100px;
    margin-left: 8px;  
  }

  .floor-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Added */
    border-radius: 16px;
  }

  #floor-views
  {
    color:lightgray;
  }

  #floor-views i {
    color: lightgray !important;
}

  .blocks-container {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 10px;
    overflow-y: scroll;
    height: auto;
  }

  .block-content {
 
    max-height: 100%;
  }

  .block-item {
    padding: 8px;
    border-radius: 30px;
    font-size: 10px;
    color: var(--text-color);
  }

  .floor-blocks-container {
    /* ... */
    width: 100%;
    background-color: transparent;
    height: auto;
    flex-direction: column;
    margin-top: 0px;
    display: none;
  }

  .floor-blocks-container h2 {
    padding-left: 10px;
    padding-top: 10px;
  }

  .floor-form-group {
    margin-bottom: 0rem;
  }

  .floor-post-form {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .floor-content-container {
   /* position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 0;
    -webkit-overflow-scrolling: touch; 
    margin-left: 0px;
    flex-direction: column;*/
    float:left;
    width:100%;
    height: auto;
    display: block;
    box-shadow: unset;
  }
  
  .floor-content-header {
    justify-content: end;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .floor-footer {
    display: flex;
    height: 40px;
    border-radius: 16px;
  }

  .toggle-block-btn {
    display: flex;
  }

  .floor-blocks-header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .floor-blocks-subheader {
   padding: 10px;
   width: 100%;
  }

  .floor-blocks-menu-container {
    display: flex; flex-direction: row; justify-content: space-between; width: 100%;
  }

  .floor-blocks-menu {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: start;
    background-color: transparent;
    z-index: 999;
    overflow-x: scroll;
    align-items: center;
    margin-left: -10px;
    white-space: nowrap;
    margin-top: 0px;
    overflow-y: hidden;
  }
  
  .floor-blocks-icons {
    width: 20%;
    height: 100%;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: end;
    align-items: center;
  }

  .floor-content{
    flex-direction: column;
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 0px;
    box-shadow: none;
    flex-grow: 1; /* Make the container grow to fill available space */
    overflow-y: auto;
  }

  .floor-post-container{
    flex-direction: column;
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 0px;
    box-shadow: none;
    flex-grow: 1; /* Make the container grow to fill available space */
  }

  .fed-wall-comments-container,
  .profile-wall-comments-container,
  .floor-page-comments-container {
    display: none;
  }

  .main-comments-container {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: white; /* Black w/ opacity */
    z-index: 100005;
    justify-content: center;
    align-items: center;
  }
  
  .comments-container {
    flex-direction: column;
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 0px;
    padding: 10px;
    box-shadow: none;
    flex-grow: 1; /* Make the container grow to fill available space */
    display: flex;
    background-color: white; /* Black w/ opacity */
  }

  .floor-page-comments-container {
    width: 100%;
  }

  .floor-root-header {
    margin-top: 4px;
  }

  .author-info {
    margin-bottom: 0px;
  }


  .clearfix-floor-content.with-media > div:nth-child(1) {
    flex-basis: 70%; /*R60%  L 30%*/
  }
  
  .clearfix-floor-content.with-media > div:nth-child(2) {
    flex-basis: 100%; /*R40%  L 60%*/
  }
  
  .floor-session-title,
  .floor-post-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 4px;
  }

  .floor-session-details,
  .floor-post-details {
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: none;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
    color: #333D42;
    line-height: 1.5;
  }

  .floor-session-details {
    color: gray; margin-bottom:0px;
    font-size: 12px;
  }

  #backToGraph {
    position: absolute; left: 10px; top:14px; cursor: pointer; color: white !important; z-index: 999;font-size: 16px;
  }

  #floorUserLogo {
    position: absolute;border-radius: 16px; right: 30px; top:5px; cursor: pointer; color: gray; z-index: 999;width: 30px; height: 30px;
  }

  #floor-page-loginBtn
  {
    display: none;
    float: right;
    width: 52px;
    right: 30px;
    margin-right: 4px;
    border-radius: 12px;
    border: none;
    position: absolute;
    top: 8px;
    padding: 6px;
  }
  .floor_menu
  {
    position: absolute;
    right: 0px;
    top: 12px;
    cursor: pointer;
    width: 21px;
    text-align: center;
  }
  #menuBtn
  {
    color:white !important;
  }

  .fed_menu
  {
    position: relative;
    right: 3.6rem;
    cursor: pointer;
    width: 20px;
    text-align: center;
    justify-content: center;
  }

  #fed_menuBtn
  {
    color:white;
  }


  

  .media {
    max-height: 200px;
  }

  .video-media {
    max-height: 200px;
    margin-top: 8px;
  }

  #floorNewPostHolder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8); /* semi-transparent black */
    visibility: hidden; /* initially hidden */
  }

  .sessions-title-details-div {
    margin-left:0px !important; display: flex; flex-direction: column; justify-content: center;
  }

  .floor-share-btn {
    font-size: 10px;
  }

  .floor-follower-count,#floor_qrcode{
    color: white !important;
  }
  



  .floor-follower-count:hover{
    text-decoration: underline;
  }

  .wrapped-title-graph,
  .wrapped-title,wrapped-title-leaf {
  color: white;
  }

  .wrapped-title {
    font-size: 1.125rem;
    font-weight: bold;
  }

  .wrapped-title-leaf {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .floor-title-desc-container-graph,
  .floor-title-desc-container{
    text-align: left;
    width: 90%;
  }

  #floorPathLink {
    font-size: 8px;
  }
  .path-connector {
    width: 10px; /* Width of the line */
  }

  .post-date {
    font-size: 14px;
  }

  .author-logo {
    width: 40px;
    height: 40px;
  }

  .comment-author-logo {
    width: 30px;
    height: 30px;
  }

  #from-floor-id {
    font-size: 0.875rem;
    font-weight: 600;
  }

  .clearfix-floor-content > div {
    margin-left: 0px;
  }

  
  .interactions {
    margin-left: 0px;
    margin-bottom: 6px;
  }

  .floor-path-panel {
    left: 0px;
    top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }

  #fedPathLink {
    font-size: 12px;
    color: #007bff;
    font-weight: bold;
    width: 35%;
    padding-right: 20px;
    align-items: center;
    display: flex;
    justify-content: end;
    gap: 2px;
    cursor: pointer;
  }
  
  .close-comments {
    right: 3%;
  }

  .floor-stat-banner-graph,
  .floor-stat-banner {
    width:58%;
  }

  .styled-area {
    color: #007bff; /* Make the link color blue */
    padding: 2px 8px;
    background-color: #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
  }

  .styled-area:hover {
      text-decoration: none; /* Keep underline on hover */
  }

  .styled-url-icon {
      color: #007bff;
      text-decoration: none;
  }

  .styled-url-icon i {
      font-size: 16px;
  }

  .styled-url-icon:hover {
      color: #0056b3;
  }

  .postCommentMain {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  
  .postCommentLeft {
    float: left;
    width: 100%;
    /*height: 100vh;*/
  }
  
  .postCommentRight {
    float: left;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    margin-top: 0px;
    z-index: 1;
  }

  .author-details{
    max-width: 90%;
    overflow: hidden;
  }

}



#map-container {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

#map {
  height: 200px;
  width: 100%;
}

#addressInput {
  width: 100%;
  margin: 0px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


.floor_menu_inner,.fed_menu_inner
{
  cursor: pointer;
  display: flex;
  align-items: center;
}

.floor_menu_options {
  display: none;
  position: absolute;
  top: 30px;
  right: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 172px;
  min-width: 172px;
  max-height: 200px;
  overflow: auto;
}

.floor_menu_inner_option,.fed_menu_inner_option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  padding-left: 16px;
  font-size: 12px;
}
.floor_menu_inner_option i {
  margin-right: 10px;
  color: #333;
}

.floor_menu_inner_option span {
  color: #333;
}

.floor_menu_inner_option:hover {
  background-color: #007BFF;
}

.floor_menu_inner_option:hover i,
.floor_menu_inner_option:hover span {
  color: #fff;
}

.fed_menu_inner_option i {
  margin-right: 10px;
  color: #333;
}

.fed_menu_inner_option span {
  color: #333;
}

.fed_menu_inner_option:hover {
  background-color: #F7F9F9;
}




#floorMainContainerLogo{
  cursor: pointer;
}
#main-input{
 display: none;
  cursor: pointer;
}

.search-content-container {
  display: flex;
}

#searchFloorContent{
  
  width: 130px;
  margin-bottom: 5px;
  margin-top: 5px;
  margin-right: 10px;
  padding: 2px; 
  font-size: 14px;
  border: 1px solid lightgray;
  background-color: transparent;
   
}


#floorConetentSearchButton{
position: relative;
left: 8px;
color: #525151;
display: flex;
align-items: center;
margin-right: 20px;
cursor: pointer;

  
}
.result-Item{
  background-color: white;
}
.nomatch{
  position:absolute;
  left: 45%;
  top: 45%;
  font-size: medium;
}

.pac-container {
  z-index: 1000000 !important;
}

.loading-text {
  font-size: 0.85rem;
  color: gray;
  display: inline-flex;
  align-items: center;
  letter-spacing: 1px;
}

.dot_main {
  float: right;
  display: none;
  justify-content: center;
}

.dot_inner {
  animation: colorChange 1.5s infinite ease-in-out;
  font-weight: bold;
  font-size: 5rem;
  margin-top: -50px;
}

.dot_inner:nth-child(1) {
  animation-delay: 0s;
}

.dot_inner:nth-child(2) {
  animation-delay: 0.3s;
}

.dot_inner:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes colorChange {
  0% {
      opacity: 0.5;
      /*color: #08aff4;  Initial color (blue) */
  }
  33% {
      opacity: 1;
      /*color: #00cc99;  Second color (green) */
  }
  66% {
      opacity: 1;
      /*color: #ffcc00;  Third color (yellow) */
  }
  100% {
      opacity: 0.8;
      /*color: #08aff4;  Back to initial color (blue) */
  }
}

/*.evaluation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}*/
.view-analytics-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(81,166,245,0.4);
}
.share-btn:hover {
  background: #e9f3fd;
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .evaluation-card {
    padding: 22px 16px;
  }
  .buttons-group {
    flex-direction: column;
    gap: 12px;
  }
  .view-analytics-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hourglass Container */
.hourglass {
 /* position: relative;
  width: 40px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hourglass-animation 2s infinite;*/
}

/* Top of the Hourglass */
.hourglass-top {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #3498db;
  position: absolute;
  top: 0;
  animation: hourglass-fill-top 2s infinite;
}

/* Middle Part of Hourglass (narrow part) */
.hourglass-middle {
  width: 10px;
  height: 30px;
  background-color: #3498db;
  position: absolute;
  top: 20px;
}

/* Bottom of the Hourglass */
.hourglass-bottom {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #3498db;
  position: absolute;
  bottom: 0;
  animation: hourglass-fill-bottom 2s infinite;
}

/* Hourglass Animation for Filling Effect */
@keyframes hourglass-animation {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

/* Animation to simulate the filling of the top */
@keyframes hourglass-fill-top {
  0%, 50% {
    border-bottom-color: #3498db;
  }
  50%, 100% {
    border-bottom-color: transparent;
  }
}

/* Animation to simulate the filling of the bottom */
@keyframes hourglass-fill-bottom {
  0%, 50% {
    border-top-color: transparent;
  }
  50%, 100% {
    border-top-color: #3498db;
  }
}
