body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .chat-container {
            width: 600px;
            height: 80vh;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .chat-header {
            background: #007bff;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .chat-header img {
            height: 40px;
			width: 40px;
			border-radius: 50%;
			background: white;
			padding: 5px;
        }

        .chat-box {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .chat-message {
            background: #cdd9fb;
            color: black;
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 15px;
            max-width: 60%;
            font-size: 18px;
            align-self: flex-end;
        }

        .chat-response-row {
            display: flex;
			align-items: flex-start;
			margin-bottom: 15px;
            max-width: 80%;
			align-self: flex-start;
        }

        .chat-logo-left {
            margin-right: 10px;
			flex-shrink: 0;
        }

        .chat-logo-left img {
            height: 30px;
			width: 30px;
			border-radius: 50%;
			background-color: white;
			padding: 5px;
        }

        .chat-response {
            background: #eaeaea;
            color: black;
            padding: 15px;
            border-radius: 15px;
            font-size: 18px;
            max-width: 100%;
        }

        .chat-input {
            display: flex;
            padding: 15px;
            background: #f9f9f9;
            border-top: 1px solid #ddd;
        }

        textarea {
            flex: 1;
            padding: 15px;
            font-size: 18px;
            border: 1px solid #ddd;
            border-radius: 10px;
            resize: none;
            height: 60px;
        }

        button {
            background: #007bff;
            color: white;
            border: none;
            padding: 15px 20px;
            margin-left: 15px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 18px;
        }

        button:hover {
            background: #0056b3;
        }

        .typing-indicator {
          display: flex;
          align-items: center;
          background: #eaeaea;
          padding: 10px;
          border-radius: 10px;
          margin-bottom: 10px;
          max-width: 80%;
          align-self: flex-start;
        }

        .dot {
          width: 8px;
          height: 8px;
          margin: 0 2px;
          background-color: gray;
          border-radius: 50%;
          opacity: 0.3;
          animation: typing 1.5s infinite ease-in-out;
        }

        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
          0% { opacity: 0.3; }
          50% { opacity: 1; }
          100% { opacity: 0.3; }
        }
