/* Tarabot chatbox */
    #tarabot {
      background: #ffcae8;
      border-radius: 15px;
      box-shadow: 0 0 15px #ffb6d9;
      padding: 15px;
      display: flex;
      flex-direction: column;
      height: 350px;
      max-width: 320px;
      font-family: 'pixelpoiiz', monospace;
      color: #660033;
      border: 2px solid #ff9dd9;
    }

    #tarabot h2 {
      font-size: 1.3em;
      margin-bottom: 8px;
      text-align: center;
    }

    #tarabot #chatMessages {
      flex-grow: 1;
      background: #fff0f7;
      border-radius: 10px;
      padding: 10px;
      font-size: 14px;
      overflow-y: auto;
      white-space: pre-wrap;
      word-wrap: break-word;
      border: 1px solid #ff9dd9;
      margin-bottom: 10px;
    }

    #tarabot textarea {
      resize: none;
      width: 100%;
      height: 50px;
      border-radius: 10px;
      border: 1px solid #ff9dd9;
      padding: 8px;
      font-family: 'pixelpoiiz', monospace;
      font-size: 14px;
      outline: none;
      box-sizing: border-box;
    }

    #tarabot button {
      margin-top: 8px;
      background-color: #ff9dd9;
      color: white;
      border: none;
      border-radius: 10px;
      padding: 8px 12px;
      cursor: pointer;
      font-weight: bold;
      font-family: 'pixelpoiiz', monospace;
      transition: background-color 0.3s ease;
    }
    #tarabot button:hover {
      background-color: #ff66cc;
    }