body {
    font-family: Inter, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #fff; 
    color: #333; 
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    margin: 15px auto;
    position: relative;
    background: #f4f4f4;
    box-shadow: -24px 0 #f4f4f4, 24px 0 #f4f4f4;
    box-sizing: border-box;
    animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
  33% {
    background: #f4f4f4;
    box-shadow: -24px 0 #7c000c, 24px 0 #f4f4f4;
  }
  66% {
    background: #7c000c;
    box-shadow: -24px 0 #f4f4f4, 24px 0 #f4f4f4;
  }
  100% {
    background: #f4f4f4;
    box-shadow: -24px 0 #f4f4f4, 24px 0 #7c000c;
  }
}

.chat-message {
    background-color: #f9f9f9; 
    transition: background-color 0.3s ease; 
    text-align: left; 
    display: flex; 
    align-items: top; 
    padding: 10px;
}

h1 {
  background: linear-gradient(to right, #003d81, #7c000c, #);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.6rem;
  margin-top: -15px;
 margin-left: 100px;
    color:  #003d81;
    font-weight: 800;
}

.chatbot-placeholder {
    font-size: 16px;
}

.container {
    transition: background-color 0.3s ease;
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    text-align: left; 
}

input[type="text"] {
    width: 95%;
    padding: 15px;
    margin: 10px 0 20px 0;
    border-radius: 3px;
    border: 1px solid #ddd;
}

button[type="submit"] {
    box-shadow: none !important; 
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    border: none; 
    background-color: #003D81;
    color: #fff;
    padding: 10px 35px;
    margin-bottom: 10px;
    border: 1px solid ##003D81;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: Inter, sans-serif;
}

button[type="button"] {
    box-shadow: none !important; 
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    border: none; 
    background-color: #003D81;
    color: #fff;
    padding: 10px 35px;
    margin-bottom: 10px;
    border: 1px solid ##003D81;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: Inter, sans-serif;
}

.chat-message button {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.chat-message button img {
    height: 20px;
    width: auto;
}

.answer-container {
  display: block;
  flex-direction: column;
  text-align: left; 
}

.chat-message {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.chat-message strong {
    margin-right: 10px; 
    margin-top: 16px; 
}

pre {
    white-space: pre-wrap; 
    font-family: Inter, sans-serif;
}