#internet-query-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000; /* Ensure it's above other content */
}

#internet-query-input {
    font-size: 20px;
    padding: 0.5rem;
    width: 80%;
    max-width: 600px; 
    margin-bottom: 20px; 
    background-color: black;
    color: white;
    height: 100px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    border: 1px solid purple;
    border-radius: 5px;
}

#close-overlay {
    font-size: 2rem; /* Large close icon for easy clicking */
    color: #fff; 
    position: absolute;
    top: 250px;
    right: 40px;
}



@keyframes moveGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

#stop-internet-recording,
#start-internet-recording {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: 5px solid transparent;
  border-radius: 50%;
  background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet, red);
  background-size: 200% 200%;
  animation: moveGradient 8s ease-in-out infinite;
}

#stop-internet-recording {
  display: none;
}

#askLabel {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  top: 270px;

}

.chatgpt-message {
  color: white;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bolder;
  font-family: 'Patrick Hand', cursive;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.6);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  word-wrap: break-word;
}