#chatbot {
  background: linear-gradient(135deg, #6a11cb 0%, rgba(37, 117, 252, 0) 100%);
  background: transparent !important;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999;
  position: fixed;
  right: 0;
  bottom: 0;
}
#chatbot .container {
  width: 100%;
  max-width: 500px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 90vh;
  padding: 0;
}
#chatbot .header {
  background: linear-gradient(to right, #4b6cb7, #182848);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}
#chatbot .header h1 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
#chatbot .header p {
  font-size: 0.9rem;
  opacity: 0.9;
}
#chatbot .minimize-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
#chatbot .minimize-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
#chatbot .chat-container {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: #f5f8fb;
}
#chatbot .message {
  max-width: 80%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#chatbot .bot-message {
  background-color: #e3f2fd;
  border-bottom-left-radius: 5px;
  align-self: flex-start;
}
#chatbot .user-message {
  background-color: #4b6cb7;
  color: white;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}
#chatbot .options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
#chatbot .option-btn {
  background: #4b6cb7;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
#chatbot .option-btn:hover {
  background: #3a5795;
  transform: translateY(-2px);
}
#chatbot .datetime-container {
  margin-top: 10px;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#chatbot .date-picker {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
#chatbot .time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
#chatbot .time-slot {
  padding: 8px;
  text-align: center;
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}
#chatbot .time-slot:hover {
  background: #bbdefb;
}
#chatbot .time-slot.selected {
  background: #4b6cb7;
  color: white;
  border-color: #4b6cb7;
}
#chatbot .input-container {
  display: flex;
  padding: 15px;
  background-color: white;
  border-top: 1px solid #eee;
}
#chatbot #user-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.3s;
}
#chatbot #user-input:focus {
  border-color: #4b6cb7;
}
#chatbot #send-btn {
  background: linear-gradient(to right, #4b6cb7, #182848);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}
#chatbot #send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#chatbot .typing-indicator {
  display: none;
  background-color: #e3f2fd;
  padding: 12px 16px;
  border-radius: 18px;
  align-self: flex-start;
  margin-bottom: 15px;
}
#chatbot .typing-indicator span {
  height: 8px;
  width: 8px;
  background-color: #999;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  animation: bounce 1.3s infinite;
}
#chatbot .typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}
#chatbot .typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
#chatbot .timestamp {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 5px;
  text-align: right;
}
#chatbot .confirmation-btn {
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}
#chatbot .confirmation-btn:hover {
  background: #45a049;
}
#chatbot .email-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
#chatbot .email-error {
  color: #f44336;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
#chatbot .minimized-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #4b6cb7, #182848);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  color: white;
  font-size: 24px;
  animation: popIn 0.3s;
}
@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#chatbot .robot-icon {
  width: 30px;
  height: 30px;
  position: relative;
}
#chatbot .robot-head {
  width: 24px;
  height: 20px;
  background: #e0e0e0;
  border-radius: 50% 50% 40% 40%;
  position: relative;
  margin: 0 auto;
}
#chatbot .robot-eyes {
  display: flex;
  justify-content: space-around;
  padding-top: 5px;
}
#chatbot .robot-eye {
  width: 5px;
  height: 5px;
  background: #4b6cb7;
  border-radius: 50%;
}
#chatbot .robot-mouth {
  width: 12px;
  height: 3px;
  background: #4b6cb7;
  border-radius: 2px;
  margin: 3px auto 0;
}
#chatbot .robot-body {
  width: 20px;
  height: 15px;
  background: #e0e0e0;
  border-radius: 40% 40% 50% 50%;
  margin: -2px auto 0;
  position: relative;
}
#chatbot .robot-antenna {
  width: 2px;
  height: 8px;
  background: #e0e0e0;
  margin: 0 auto;
}
#chatbot .robot-antenna-ball {
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  margin: -14px auto 0;
}
@media (max-width: 600px) {
  #chatbot .container {
    height: 95vh;
    border-radius: 10px;
  }
  #chatbot .message {
    max-width: 90%;
  }
  #chatbot #send-btn {
    padding: 12px 20px;
  }
  #chatbot .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=chaty.css.map */