  #floating-items-area {
    position: fixed;
    top: 100px;
    right: 0;
    width: 35%;
    height: 80vh;
    pointer-events: none;
    z-index: 0; /* Behind main content */
    overflow: hidden;
  }

.item-hint {
  position: absolute;
  font-style: italic;
  color: #444;
  right: 10px;  /* fixed */
}

  @keyframes float {
    0% {
      transform: translateY(0px);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }

.chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 10px;
  z-index: 9999;
}

.chat-box {
  height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  padding: 8px;
  background: #f9f9f9;
}


  }
