/* QUICK POST CSS///////////*/
.ptc-floorpost-banner {
  background-image: url('../images/floorpost-banner-1.jpg'); /* Replace with the path to your background image */
  background-size: contain; /* This will make the background image cover the entire div */
  background-position: center; /* This will center the background image */
  background-repeat: no-repeat; /* This will prevent the background image from repeating */
  background-color: var(--bg-container-color);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  height: 100%; /* Adjust the height as needed */
  width: 100%;
  position: relative;
  display: none;
}

.quick-post-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  background-color: #F7F9F9;
}

.quick-floorid-div {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0 0 0 10px;
  background-color: black;
}
.qr-qrimage-div {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.scan-notes {
  text-align: center;
  margin-top: 10px;
  font-size: 10px;
  color: white;
}

.scan-notes a {
  color: inherit;
  text-decoration: none;
}

.scan-notes   a:hover {
  color: #007bff;
}

.quick-post-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 5px;
}

.quick-post-form-group {
  height: 80%;
  margin-top: 5px;
}

.quick-post-floorid textarea::placeholder {
  color: rgb(49, 48, 48);
}

.quick-post-title-div textarea::placeholder,
.quick-post-floor-div textarea::placeholder {
  color: rgb(49, 48, 48);
  font-size: 14px;
}

.quick-post-message-div textarea::placeholder {
    color: rgb(49, 48, 48);
    margin-top: 4px;
    font-size: 16px;
}

.quick-post-message-div {
  margin-top:10px;
  height: 60%;
}

.quick-post-title-div,
.quick-post-floor-div {
  width: 95%;
  display: flex;
  flex-direction: row;
  height: 50px;
  justify-content: left;
  align-items: center;
}

.quick-post-title-div p,
.quick-post-floor-div p {
  margin-right: 10px;
  color: #1877F2;
  text-align: center;
  font-size: 16px;
}

.quick-post-titleid,
.quick-post-floorid {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 16px;
  resize: none;
  font-size: 16px;
  color: darkblue;
  width: 70%;
}

.quick-qr-scan {
  width: 36px;
  height: 36px;
  margin-left: 10px;  
  border-radius: 10px;
  cursor: pointer;
}

.fed-floor-speech-reco-div,
.floor-speech-reco-div {
  width: 36px;
  height: 36px;
  margin-left: 10px;  
  border-radius: 10px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgb(100,100,100);
}

.fed-floor-speech-reco-div {
  color: white;
}

.quick-media-status {
  display: flex;
  flex-direction: row; 
  justify-content: space-between;
}

.quick-post-message {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #dad5d5;
  border-radius: 16px;
  resize: none;
  background-color: white;
  margin-top: 2px;
  font-size: 16px;
  height: 90%;
}

.quick-form-group {
  display: flex;
  flex-direction: column;
  flex-direction: space-between;
  align-items: center;
  gap: 0.5rem;
  height: 10%;
  margin-bottom: 10px;
}

.quick-attachment-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-direction: row;
  margin-bottom: 10px;
}

.quick-media-icons {
  display: flex;
  justify-content: space-around;
}

.hint-text {
  position: absolute;
  pointer-events: none;
  left: 34px;
  top: 20px;
}

.quick-media-icons i {
  font-size: 20px;
  color: gray;
  cursor: pointer;
  background: none;
  border: none;
}

.selected-quick-media-icon {
  color: blue !important;; /* Change color to indicate selected state */
}

emoji-picker {
  display: none;
  position: absolute;
  /* Adjust the position values as needed */
  top: 0px;
  left: 70px;
  z-index: 1000;
}

.quick-attachment-group.quick-form-group input {
  padding: 0.5rem;
  border-radius: 5px;
  resize: none;
  border: 1px solid #ccc;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.3;
  }
}

.blinkred {
  color: red;
}

.blinkgreen {
  color: #007BFF;
}

.blinking {
  animation: blink 1s linear infinite;
}

/* LANGUAGE MODE*/
.speech-lang-option {
  position: relative;
  display: flex;
  height: 16px;
  width: auto;
  align-items: center;
  border-radius: 16px;
  background-color: beige;
  color: black;
  padding: 12px 16px;
  cursor: pointer;
  margin-right: 60px;
}

.language-modal {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensure the dialog appears on top of other elements */
  display: none;
}

.language-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  height: 50%;
  position: absolute;
  top: 5%
}

.select-lang-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top:10px;
}

.language-modal-content h3 {
  margin-top: 0;
}

.language-modal-content ul {
  list-style-type: none;
  padding: 0;
}

.language-modal-content li {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

/*END OF LANGUAGE*/

.quick-submit-btn {
  background-color: #1877F2;
  border: 1px solid #1877F2; /* Adjust the border color to match your design */
  border-radius: 4px; /* Adjust the border radius for rounded corners */
  padding: 8px 8px;
  font-size: 16px;
  color: white; /* Adjust the color to match your design */
  cursor: pointer;
}

.quick-submit-btn:hover {
  background-color: #007bff;
  color: white;
}

.quick-submit-btn:focus {
  outline: none;
}

/* SUCCESS DIV CSS *************************/
.quick-post-resp-div {
  flex-direction: column;
  align-items: center;
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.load-spinner {
  align-items: center;
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  background-color:#000000d1;
  position: fixed;
  top: 0%;
  left: 0%;
  z-index: 9991;
}

.quick-post-success-msg {
  color: lightblue;
  font-size: 14px;
  margin-bottom: 10px;
}

.floor-short-logo {
  width: 24px;
  height: 24px;
  border: 1px;
}

.quick-post-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.quick-success-close-btn,
.posts-view-btn {
  padding: 8px 8px;
  border: none;
  background-color: #007BFF;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
}

/* QR CODE SCANNER DIALOG */

.qrScanner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
  position: relative;
}

.qr-scanner-dialog {
  background-color: #464646;
  width: 50%;
  height: 80%;
  display: flex;
  flex-direction: column;
}

.qr-scanner-header {
  padding: 15px;
  background-color: #f5f5f5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.qr-scan-div {
  flex-grow: 1;
  position: relative;
  display: flex; /* Add this line */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qr-scanner-footer {
  padding: 15px;
  background-color: #f5f5f5;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
}

.qr-stop-button {
  background-color: #007bff;
  width: 100px;
  border-radius: 10px;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  justify-content: center;
}

.quick-post-resp-status {
  color: red;
  font-size: 10px;
  display: flex;
  justify-content: right;
  align-items: right;
  margin-right: 2px;
}

.quick-post-divs-hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-out, height 0.5s ease-out;
}

.quick-post-floor-search-container {
  display: none;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #64727217;
}
.quick-post-add-form-group
{
  background: rgba(135, 32, 32, 0.19);
  padding: 12px;
}

.floor-post-blocks {
  display: none; padding-top: 10px; align-items: center; padding-top: 10px; justify-content: start; gap:30px; width: 50%;
}

.blocks-combo-box {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #007bff;
}

.like-icon {
  display: none; /* Hide the checkboxes */
}

.like-icon:checked + .label-custom {
  color: #007bff !important;
  filter: none;
  will-change: font-size;
  /*animation: heart 1s cubic-bezier(0.17, 0.89, 0.32, 1.49);*/
}

.like-icon:checked + .label-custom:before {
  will-change: transform, border-width, border-color;
  animation: bubble 1s ease-out;
}

.like-icon:checked + .label-custom:after {
  will-change: opacity, box-shadow;
  animation: sparkles 1s ease-out;
}

.like-icon:focus + .label-custom {
  text-shadow: 0 0 3px white,  0 1px 1px white, 0 -1px 1px white,  1px 0 1px white, -1px 0 1px white;
}

.label-custom {
align-self: center;
position: relative;
color: gray;
font-size: 14px;
/*filter: grayscale(1);*/
user-select: none;
cursor: pointer;
}

.label-custom:before,
.label-custom:after {
position: absolute;
z-index: 1000;
top: 50%;
left: 50%;
border-radius: 50%;
content: '';
}

.label-custom:before {
box-sizing: border-box;
margin: -2.25rem;
border: solid 2.25rem #e2264d;
width: 4.5rem;
height: 4.5rem;
transform: scale(0);
}

.label-custom:after {
margin: -0.1875rem;
width: 0.375rem;
height: 0.375rem;
color: #007BFF;
box-shadow: 0.32476rem -3rem 0 -0.1875rem #ff8080, -0.32476rem -2.625rem 0 -0.1875rem #ffed80, 2.54798rem -1.61656rem 0 -0.1875rem #ffed80, 1.84982rem -1.89057rem 0 -0.1875rem #a4ff80, 2.85252rem 0.98418rem 0 -0.1875rem #a4ff80, 2.63145rem 0.2675rem 0 -0.1875rem #80ffc8, 1.00905rem 2.84381rem 0 -0.1875rem #80ffc8, 1.43154rem 2.22414rem 0 -0.1875rem #80c8ff, -1.59425rem 2.562rem 0 -0.1875rem #80c8ff, -0.84635rem 2.50595rem 0 -0.1875rem #a480ff, -2.99705rem 0.35095rem 0 -0.1875rem #a480ff, -2.48692rem 0.90073rem 0 -0.1875rem #ff80ed, -2.14301rem -2.12438rem 0 -0.1875rem #ff80ed, -2.25479rem -1.38275rem 0 -0.1875rem #ff8080;
}


@keyframes heart {
  0%, 17.5% {
    font-size: 0;
  }
}

@keyframes bubble {
  15% {
    transform: scale(1);
    border-color: #cc8ef5;
    border-width: 1.25rem;
  }
  30%, 100% {
    transform: scale(1);
    border-color: #cc8ef5;
    border-width: 0;
  }
}

@keyframes sparkles {
  0%, 20% {
    opacity: 0;
  }
  25% {
    opacity: 1;
    box-shadow: 0.32476rem -2.4375rem 0 0rem #ff8080, -0.32476rem -2.0625rem 0 0rem #ffed80, 2.1082rem -1.26585rem 0 0rem #ffed80, 1.41004rem -1.53985rem 0 0rem #a4ff80, 2.30412rem 0.85901rem 0 0rem #a4ff80, 2.08305rem 0.14233rem 0 0rem #80ffc8, 0.76499rem 2.33702rem 0 0rem #80ffc8, 1.18748rem 1.71734rem 0 0rem #80c8ff, -1.35019rem 2.0552rem 0 0rem #80c8ff, -0.60229rem 1.99916rem 0 0rem #a480ff, -2.44865rem 0.22578rem 0 0rem #a480ff, -1.93852rem 0.77557rem 0 0rem #ff80ed, -1.70323rem -1.77366rem 0 0rem #ff80ed, -1.81501rem -1.03204rem 0 0rem #ff8080;
  }
}

.progress-spinner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-spinner {
  width: 50px;
  height: 50px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid #4caf50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#uploadProgressContainer {
  display: none; /* Initially hidden */
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.66);
  z-index: 10000004;
}

/* New spinner styles */
.loadingio-spinner-spinner-nq4q5u6dq7r {
  width: 200px;
  height: 200px;
  display: flex; /* Center the spinner */
  justify-content: center;
  align-items: center;
}

.ldio-x2uulkbinbj {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}

.ldio-x2uulkbinbj div {
  left: 96px;
  top: 47px;
  position: absolute;
  animation: ldio-x2uulkbinbj linear 1s infinite;
  background: #ffffff;
  width: 8px;
  height: 22px;
  border-radius: 0px / 0px;
  transform-origin: 4px 53px;
}

@keyframes ldio-x2uulkbinbj {
  0% { opacity: 1 }
  100% { opacity: 0 }
}

/* Spinner div animations */
.ldio-x2uulkbinbj div:nth-child(1) { transform: rotate(0deg); animation-delay: -0.9166666666666666s; }
.ldio-x2uulkbinbj div:nth-child(2) { transform: rotate(30deg); animation-delay: -0.8333333333333334s; }
.ldio-x2uulkbinbj div:nth-child(3) { transform: rotate(60deg); animation-delay: -0.75s; }
.ldio-x2uulkbinbj div:nth-child(4) { transform: rotate(90deg); animation-delay: -0.6666666666666666s; }
.ldio-x2uulkbinbj div:nth-child(5) { transform: rotate(120deg); animation-delay: -0.5833333333333334s; }
.ldio-x2uulkbinbj div:nth-child(6) { transform: rotate(150deg); animation-delay: -0.5s; }
.ldio-x2uulkbinbj div:nth-child(7) { transform: rotate(180deg); animation-delay: -0.4166666666666667s; }
.ldio-x2uulkbinbj div:nth-child(8) { transform: rotate(210deg); animation-delay: -0.3333333333333333s; }
.ldio-x2uulkbinbj div:nth-child(9) { transform: rotate(240deg); animation-delay: -0.25s; }
.ldio-x2uulkbinbj div:nth-child(10) { transform: rotate(270deg); animation-delay: -0.16666666666666666s; }
.ldio-x2uulkbinbj div:nth-child(11) { transform: rotate(300deg); animation-delay: -0.08333333333333333s; }
.ldio-x2uulkbinbj div:nth-child(12) { transform: rotate(330deg); animation-delay: 0s; }


.progress-text {
  position: absolute;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gifButton{
  font-size: 20px;
  
}

/* Styles for tabs */
.tabs-wrapper {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.tab-class {
  padding: 5px 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-class.active {
  border-bottom-color: #4caf50;
  font-weight: bold;
}

/* Styles for progress bar */
.progress-bar-wrapper {
  margin: 10px 0;
  height: 5px;
  background: #eee;
  position: relative;
}

.progress-bar-segment {
  display: inline-block;
  height: 100%;
  background: #4caf50;
  width: 50%; /* Adjust this as needed */
}

/* Styles for search box */
.search-box-wrapper {
  margin: 10px 0;
}

.search-input-class {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
}

/* Styles for GIF elements */
.gifs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gif-element-wrapper {
  width: 130px; /* Default width for GIFs */
  cursor: pointer;
}

.gif-img-class {
  width: 130px;
  height: 130px;
  opacity: 1;
}

.sticker-header {
  display: flex;
  justify-content: space-around;
  background: #f1f1f1;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  overflow-x: auto; /* Scroll horizontally if needed */
}

.sticker-tab {
  cursor: pointer;
  padding: 5px 10px;
}

.sticker-tab.active {
  background: #ddd;
}

.sticker-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.sticker {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.quick-bot-editor-floor-div {
  width: 100%;
  display: block;
}

.quick-bot-editor-floorid {
  width: 100%;
  height: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  resize: none;
  margin-bottom: 10px;
}

.editor-footer-buttons-left,.editor-footer-buttons-right {
  background: rgb(0, 123, 255);
  border: 1px solid rgb(0, 123, 255) !important;
  color: white;
  padding: 8px 10px;
  margin-top: 5px;
  margin-left: 0;
  border: none;
  font-size: 0.75rem;
  border-radius: 8px;
  width: auto;
  cursor: pointer;
}

.editor-footer-buttons-left {
  background: transparent;
  color: rgb(0, 123, 255);
}
.editor-footer-buttons-right-inner {
  float:right;
  background-image: url('https://djtmgyblceldu.cloudfront.net/fedbot/images/evalBtn.png');
  background-size: cover;
  width: 72px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
}

.editor-footer-buttons-right {
  float:right;
 
  padding: 4px 8px 4px 8px;
}

.editor-footer-buttons-right-inner:hover{
  background: rgb(0 123 255 / 56%);
  border: 1px solid rgb(0, 123, 255) !important;
  color: white;
  background-image: url('https://djtmgyblceldu.cloudfront.net/fedbot/images/evalBtn.png');
  background-size: cover;
  width: 72px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
}

.editor-footer-buttons-left:hover {
  background: rgb(0 123 255 / 56%);
  border: 1px solid rgb(0, 123, 255) !important;
  color: white;
}

#resubmit_analysis_inner {
  background-image: url('https://djtmgyblceldu.cloudfront.net/fedbot/images/reevalBtn.png');
  background-size: cover;
  width: 100px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
}

.bot-img-preview-close-icon {
  background: rgba(0, 0, 0, 0.45);
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  padding: 0;
  font-size: 1rem;
}

.image-preview img {
  opacity: 1;
}

#analytics-output {
  position: absolute; /* Make it overlay */
  width: 100%; /* Adjust width as necessary */
  background-color: rgba(32, 32, 32, 0.94); /* Semi-transparent background */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1000000; /* Ensure it's on top */
  display: none; /* Start hidden; show when needed */
  height:100%;
}

.analytics-container {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin: auto;
  float: left;
  margin-left: 25%;
  width: 50%;
  height: 94%;
  overflow-y: auto;
  cursor: text;
}

.analytics-container-close {
  cursor: pointer;
  float: right;
  font-size: 2.4rem;
  color: white;
  margin-left: 10px;
  position: absolute;
  right: 8px;
  top: 0;
}

.premium_background_div {
  margin-top: 0;
  position: absolute;
  height: 110px;
  border-radius: 0;
  overflow: hidden;
  right: 2.3rem;
  width: 5.2rem;
  top: 0;
}

.premium_background_inner {
  background-image: url(https://xfloor.ai/fedbot/images/membership_post_fee.png);
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium_content {
  background-color: transparent;
  padding: 0 10px 0px 10px;
  border-radius: 0;
  text-align: center;
}

.premium_content_amount {
  font-size: 1.067rem;
  color: white;
  text-align: center;
  font-weight: bold;
}

.premium_content_lbl {
  font-size: 0.5rem;
  color: white;
  text-align: center;
  padding-top: 0.5rem;
}

.collapsible {
  background-color: transparent;
  color: #51a6f5;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #51a6f5;
  font-weight: 800;
  display:none;
}

.collapsible_active, .collapsible:hover {
  background-color: transparent;
}


.bot-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bot-upload-text {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}


.bot-editor-form {
  width: 100%;
  padding: 0px;
  background: white;
 /* border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  font-family: Arial, sans-serif;*/
}

.bot-upload-box, .bot-text-editor {
  border: 2px dashed #cccccc;
  border-radius: 12px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.3s;
  position: relative;
  padding: 14px;
}

.bot-upload-box:hover, .bot-text-editor:hover {
  border-color: #3b82f6;
}

.bot-plus-icon {
  font-size: 48px;
  color: #999999;
}

.bot-hidden-file-input {
  display: none;
}

.bot-image-preview {
  position: relative;
  margin-top: 16px;
}

.bot-image-preview img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px dashed #cccccc;
  border-radius: 12px;
  opacity: 1;
}

.bot-image-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e74c3c;
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.bot-image-close:hover {
  background: #c0392b;
}

.bot-button-row {
  margin-top: 20px;
  text-align: right;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.bot-save-button {
  padding: 10px 20px;
  background-color: #51a6f5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bot-save-button:hover {
  background-color: #2c81d1;
}

.bot-spinner {
  text-align: center;
  margin-bottom: 10px;
}

.bot-spinner i {
  font-size: 36px;
  color: #555;
}


.status-line {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.status-part {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.status-part.active {
  opacity: 1;
}

.status-part.hidden {
  display: none;
}

.blink-dot {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.word-counter {
  font-size: 12px;
  color: #999;
  text-align: left;
  margin-top: 4px;
  user-select: none;
  padding: 4px;
}


/* CSS for the mobile view of the left panel */
@media (max-width: 767px) {

  .quick-form-group {
    margin-bottom: 10px;
    height: 10%;
  }

  .quick-post-title-div,
  .quick-post-floor-div {
    height: 50px;
    justify-content: left;
    align-items: center;
  }

  .quick-post-message-div {
    height: 70%;
  }
  .quick-post-message {
    margin-top: 2px;
    height: 90%; /* Make sure the textarea height adjusts based on the content */
  }
  
  .qr-scanner-dialog {
    background-color: #1d1d1d;
    width: 100%;
    height: 80%;
  }

  .language-modal-content {
    width: 100%;
    height: 46%;
    top: 15%; 
  }

  .floor-post-blocks {
    display: none; padding-top: 10px; align-items: center; padding-top: 10px; justify-content: start; gap:30px; width: 30%;
    margin-left: 20px;
  }
  .blocks-combo-box {
    font-size: 16px;
  }

  .premium_background_div {
    margin-top: 0;
    position: absolute;
    height: 110px;
    border-radius: 0;
    overflow: hidden;
    right: 2.3rem;
    width: 5rem;
    top: 0;
  }

  .premium_content_amount {
    font-size: 1rem;
    color: white;
    text-align: center;
    font-weight: bold;
  }

  .premium_content_lbl {
    font-size: 0.5rem;
    color: white;
    text-align: center;
    padding-top: 0.5rem;
  }

  .analytics-container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin: auto;
    float: left;
    margin-left: 4px;
    width: 98%;
    height: 88%;
    overflow-y: auto;
  }
  
}
