		.browser{
			font-size:10px;
		}			
  
    body {
      font-family: "Poppins", sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      flex-direction: column;
    }

    h1 {
      font-size: 2.2rem;
      font-weight: 600;
      color: #202124;
      margin-bottom: 25px;
    }

	.search-box {
	  max-width: 700px;
	  margin: 0 auto;
	}

    #queryInput {
      width: 100%;
      padding: 14px 50px 14px 20px;
      font-size: 1.1rem;
      border: 1px solid #dfe1e5;
      border-radius: 50px;
      outline: none;
      box-shadow: none;
      transition: all 0.2s ease-in-out;
      background-color: #fff;
    }

    #queryInput:focus {
      border-color: #4285f4;
      box-shadow: 0 0 5px rgba(66,133,244,0.4);
    }

	.mic-icon, .send-icon {
	  top: 50%;
	  transform: translateY(-50%);
	  font-size: 1.4rem;
	  color: #5f6368;
	  cursor: pointer;
	  transition: color 0.2s;
	}

	.mic-icon:hover, .send-icon:hover {
	  color: #1a73e8;
	}

	.mic-icon {
	  right: 50px;
	}

	.send-icon {
	  right: 15px;
	}

    #resultHTML {
      max-width: 700px;
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      overflow-y: auto;
      max-height:150px;
      /*--transition: scroll-behavior 0.5s ease;--*/
    }

	#resultHTML.fullscreen {
	  max-width: none;
	  max-height: none;
	  width: 100%;
	  height: auto;
	} 	

	#resultHTML:hover {
	  animation-play-state: paused;
	}    

    #result {
      margin-top: 30px;
      max-width: 700px;
      width: 100%;
      font-size: 1.05rem;
      background: #ffffff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      overflow-y: auto;
      max-height: 300px;
      white-space: pre-wrap;
      line-height: 1.6;
    }

    #status {
      margin-top: 15px;
      color: #5f6368;
      font-style: italic;
    }

    footer {
      margin-top: 40px;
      color: #888;
      font-size: 0.9rem;
    }

    /* animasi mendengar */
	.listening {
	  animation: pulse 1.3s infinite;
	  color: #1a73e8 !important;
	}

	@keyframes pulse {
	  0% { text-shadow: 0 0 0 rgba(26,115,232,0.5); }
	  50% { text-shadow: 0 0 10px rgba(26,115,232,0.8); }
	  100% { text-shadow: 0 0 0 rgba(26,115,232,0.5); }
	}

	.video-wrapper {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin-bottom: 20px;
	}

	#AIVideo {
	  width: 100%;
	  max-width: 480px;
	  border-radius: 8px;
	}

    video {
      display: block; /* video tersembunyi, guna hanya untuk suara AI */
    }
	
	.large{
		font-size:36px;
	}
	
	.desc{
		font-size:16px;
		font-weight:500;
	}

	.chat-bubble {
	  background-color: #f1f1f1;
	  color: #333;
	  padding: 15px 20px;
	  border-radius: 20px;
	  max-width: 700px;
	  width: 100%;
	  max-height: 300px;
	  overflow-y: auto;
	  white-space: pre-wrap;
	  line-height: 1.6;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	  position: relative;
	}

	/* Tambah segitiga kecil di bawah bubble */
	.chat-bubble::after {
	  content: '';
	  position: absolute;
	  bottom: -10px;
	  left: 30px;
	  border-width: 10px;
	  border-style: solid;
	  border-color: #f1f1f1 transparent transparent transparent;
	}	