/* Floating Button Container */
    .floating-container {
      position: fixed;
      right: 20px;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
      z-index: 1000;
    }

    /* Button + Label Wrapper */
    .floating-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Button Style */
    .floating-button {
      background-color: #0084ff;
      color: white;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.2s;
    }
    .floating-button:hover {
      transform: scale(1.1);
    }

    /* Labels */
    .button-label {
      background: rgba(0,0,0,0.75);
      color: white;
      padding: 5px 10px;
      border-radius: 6px;
      font-size: 14px;
      white-space: nowrap;
      display: none;
    }

    /* Show label on hover */
    .floating-item:hover .button-label {
      display: block;
    }

    /* Chat Window */
    .chat-window {
      position: fixed;
      bottom: 100px;
      right: 100px;
      width: 300px;
      height: 400px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 1000;
    }

    .chat-header {
      background: #0084ff;
      color: white;
      padding: 10px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chat-messages {
      flex: 1;
      padding: 10px;
      overflow-y: auto;
      font-size: 14px;
      color: #333;
    }

    .chat-input {
      border-top: 1px solid #ddd;
      display: flex;
    }
    .chat-input input {
      border: none;
      flex: 1;
      padding: 10px;
    }
    .chat-input button {
      background: #0084ff;
      color: white;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
    }