body {
  font-family: Arial, sans-serif;
  background-color: #171717;
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.sidebar {
  height: 100%;
  width: 250px;
  background-color: #202225;
  padding: 20px 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

.title {
  margin-left: 10px;
}

.subtitle {
  color: #b9bbbe;
  margin-top: 5px;
}

.section-title {
  color: #8e9297;
  margin-top: 20px;
  margin-bottom: 10px;
}

.chat-option {
  padding: 14px 10px;
  cursor: pointer;
  color: #ffffff;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
  justify-content: center;
  align-items: center;
}

.create-chat{
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.786);
  border: rgba(255, 255, 255, 0.807) 0.1px solid;
  font-size: 14px;
  padding: 12px 10px;
  border-radius: 6px;
}

.create-chat, p, h4{
  margin: 0;
}

.chat-option i {
  margin-right: 10px;
}

.chat-option:hover {
  background-color: #40444b;
}

.prompt {
  background-color: #343541;
  color: #dcddde;
  padding: 25px 15px;
  width: 100%;
  text-align: center;
}

.answer {
  background-color: #434654;
  color: #dcddde;
  padding: 35px 15px;
  width: 100%;
  text-align: center;
}

.answer .text-wrapper p {
  margin-bottom: 1.5em; /* new paragraph separation */
}


#display {
  word-wrap: break-word;
}

.text-wrapper {
  max-width: 685px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8em;
  font-size: 16px;
}

.resume-title {
  background-color: #434654;
  display: none;
  color: #dcddde;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 15px 0;
}

.welcome-prompt, .welcome-answer {
  background-color: #202225;
  color: #dcddde;
  padding: 10px;
  margin-bottom: 10px;
}

.welcome-prompt .text-wrapper, .welcome-answer .text-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.chat-area {
  flex: 1;
  background-color: #343541;
}

.chat-area.welcome {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.logo {
  font-size: 36px;
  font-weight: 800;
  color: #565869;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

}

.highlight {
  background-color: #FAE69E;
  padding: 6px 6px;
  border-radius: 4px;
  color: #565869;
  font-size: 12px;
  margin-left: 6px;
}

#visitor-section{
  text-align: center;
  margin-top: 20px;
}
