@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  background-image: url(./img/AdobeStock_280279207.jpeg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
  background: transparent;
}


.fa-envelope {
  margin-top: 13px;
  margin-right: 20px;
  font-size: 25px;
  color: #fff;
  padding: 10px;
  background: #d44638;
  border-radius: 20px;
}


.left-text {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 140%;
}
.right-text {
  text-align: end;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-left: 100px !important;
}

.creating {
  text-transform: uppercase;
  color: #d44638;
  letter-spacing: 1px;
  font-weight: 800;
}
.different {
  text-transform: uppercase;
  color: #00acee;
  letter-spacing: 1px;
  font-size: 65px;
  font-weight: 800;
}

.change {
  text-transform: uppercase;
  color: #d44638;
  font-weight: 600;
}

.form-text {
  color: #fff !important;
}

.form-control {
  background: none !important;
  border-radius: 0px !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 2px solid #fff !important;
}
.btn-color {
  color: #fff;
  background: #00acee;
  border: none;
  border-radius: 50px !important;
}

#chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background-color: #3b3b3b; /* Ensure widget background contrasts with button */
  color: #fff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}


#chat-input {
  outline: none;
  border: 1px solid #4b4f56;
  border-radius: 4px;
  padding: 10px;
  color: #fffefe;
  background: #2c2f33;
  margin-right: 0px;
  flex-grow: 1;
}

#send-message {
  background-color: #7289da;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
}


#chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 10px;
  background: #23272a;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  max-height: 300px; /* Limit the height and enable scrolling */
  box-sizing: border-box;
}

#chat-widget input, #chat-widget button {
  margin-top: 8px; /* Add space between input and button */
}

.message {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 15px; /* Rounded corners */
}


.sender {
  font-weight: bold; /* Make sender names bold */
  display: inline-block;
  margin-right: 5px; /* Space between sender name and message */
}

#send-message {
  background-color: #004085; /* Dark blue color for send button */
}

#send-message:hover {
  background-color: #003366; /* Slightly darker on hover */
}

/* Emoji icons for Bot and User */
.bot-icon, .user-icon {
  width: 20px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.bot-icon::before {
  content: '🤖'; /* Emoji for bot */
}

.user-icon::before {
  content: '👤'; /* Emoji for user */
}

#chat-header {
  display: flex;
  justify-content: space-between; /* This spreads out the children */
  align-items: center; /* Vertically centers the items in the header */
  cursor: pointer;
  background-color: #3b3b3b;
  color: #ffffff;
  padding: 5px 10px; /* Add horizontal padding */
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%; /* Ensure the header spans the entire width of its parent */
}


#minimize-chat {
  display: inline-flex; /* Use flex to center content */
  justify-content: center;
  align-items: center;
  width: 20px; /* Specify a width */
  height: 20px; /* Specify a height */
  padding: 0; /* Remove padding to prevent size issues */
  margin-left: 10px; /* Add some space between the text and button */
  font-size: 14px; /* Adjust font size as necessary */
  line-height: 1; /* Ensure the line height matches the button height for vertical centering */
  text-align: center; /* Center the text horizontally */
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none; /* Removes the default outline */
}


/* Additional styles for visibility */
#minimize-chat:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.minimized #chat-messages,
.minimized #chat-input,
.minimized #send-message {
    display: none;
}

#minimize-chat:focus {
  /* Example: Change the background color slightly on focus */
  background-color: rgba(255, 255, 255, 0.2);
}

#model-selector {
  background-color:#3b3b3b;
  color: #fff;
  outline: none;
  border: none;
}

.chat-container {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha for transparency */
}

:root {
  --font-primary: 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

body {
  font-family: var(--font-primary);
}


.button {
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #678;
}

.chat-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

/* Chrome, Edge, and Safari */
.chat-messages::-webkit-scrollbar {
  width: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}


:root {
  --primary-color: #007bff;
  --background-color: #f8f9fa;
  --text-color: #333;
}

[data-theme="dark"] {
  --primary-color: #6c757d;
  --background-color: #343a40;
  --text-color: #f8f9fa;
}


@keyframes sendAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.send-button:active {
  animation: sendAnimation 0.5s ease;
}

