body {
  font-family: Arial, Helvetica, sans-serif;
  background: rgb(2, 0, 36);
  background-image: linear-gradient(140deg, hsl(0deg 0% 0%) 0%, hsl(221deg 100% 9%) 72%, hsl(216deg 83% 12%) 100%);
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.status-container {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #7b7b7b;
  font-size: 12px;
  z-index: 8;
  background: linear-gradient(rgb(0 0 0) 0%, rgb(0 0 0 / 55%) 70%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  padding: 10px;
  height: 150px;
}

.callWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

#callWithVapi {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #858585;
  cursor: pointer;
  width: 130px;
  height: 130px;
  transition: box-shadow 0.2s ease-in-out, background-color 0.3s ease-in-out;
  margin-bottom: 20px;
  z-index: 10;
}

#callWithVapi svg {
  width: 40px;
  fill: #fff;
}

#instructions {
  color: #525252;
  margin-bottom: 10px;
  text-align: center;
}

#vapiStatusMessage {
  color: red;
}

#vapiTyping {
  width: 433px;
  height: 155px;
  background: #031534;
  border: none;
  border-radius: 10px;
  color: #d2d2d2;
  padding: 20px;
}

button {
  padding: 5px;
  color: black;
  background: #cacaca;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  margin-left: 5px;
}
div#voice {
  margin-bottom: 7px;
  display: flex;
}
.question-mark {
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
  color: black;
  background: #cacaca;
  margin-left: 5px;
  font-size: 15px;
}

/* Info section styles */
.info-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
  background-image: linear-gradient(140deg, hsl(0deg 0% 0%) 0%, hsl(221deg 100% 9%) 72%, hsl(216deg 83% 12%) 100%);
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  display: none;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

div#logo {
  font-size: 20px;
  font-family: monospace;
  position: fixed;
  z-index: 9;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: bold;
  color:#cacaca;
}

h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-top: 30px;
}
#copyButton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #000000;
  cursor: pointer;
  border:none;
  width: 100px;
  height: 40px;
  transition: background-color 0.3s ease-in-out;
  margin-top: 10px;
}

#copyButton svg {
  width: 20px;
  fill: #fff;
  margin-right: 5px;
}

#chat {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 91%;
  scrollbar-width: none;
  padding: 20px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  margin-top: 10px;
}

#chat .message {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

#chat .message:nth-of-type(1) {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  height: 140px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent);
  color: #5e83c1;
  font-family: monospace;
}

#chat .user {
  background-color: #032866;
  text-align: right;
  margin-left: 30px;
  color: #fff;
}

#chat .assistant {
  background-color: #2b3135;
  text-align: left;
  margin-right: 30px;
  color: #cdcdcd;
}

@media (max-width: 1200px) {
body {
  overflow-y: visible;
  }
  #callWithVapi {
    position: fixed;
    top: 100px;
    
  }
  .callWrapper {
    position: static;
    transform: none;
    margin-top: 100px;
  }
  #instructions {
    margin-top: 150px;
}
  #chat {
    position: static;
    transform: none;
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .callWrapper {
    padding: 20px;
  }

  #vapiTyping {
    width: 100%;
    height: 120px;
  }

  #chat {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .callWrapper {
    padding: 25px;
  }

  #vapiTyping {
    width: 100%;
    height: 100px;
  }

  #chat {
    width: 90%;
  }
}