/* collapsed state */
.floating-toolbar {
  width: 48px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* expanded state */
.floating-toolbar.expanded {
  width: 180px; /* adjust width as needed */
  padding-right: 12px;
}

/* icons align left when expanded */
.floating-toolbar.expanded .ft-btn {
  justify-content: flex-start;
  padding-left: 8px;
  gap: 8px;
  width: 100%;
  border-radius: 8px;
}

/* labels for expanded mode */
.ft-label {
  display: none;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
}
.floating-toolbar.expanded .ft-label {
  display: inline;
}
/* Center image nicely */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-img {
  max-width: 220px;   /* adjust size */
  height: auto;
  margin-bottom: 10px;
}
