
/* FOOTER  */
.ftr1p {
  height: 65px;
  width: 100%;
  display: flex;
  color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  background-color: #007211;
  background-image: linear-gradient(0deg, #00830f 0%, #008826 90%) !important;
  transition: all 0.4s ease-in-out; /* Smooth animation */
}


/* Responsive styles for small screens like 300x500 */
@media screen and (max-width: 320px) {
  .ftr1 {
      flex-direction: column;
      height: auto;
      padding: 10px;
      text-align: center;
  }

  .ftr1 > * {
      margin: 5px 0;
  }
}

.ftr1p{
margin: auto;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-animate {
  animation: fadeInUp 0.6s ease-out;
}

#chat-container {
  width: 300px;
  height: 400px;
  border: 2px solid #4CAF50;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

#chat-box {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f9f9f9;
}

#user-input {
  border: none;
  padding: 10px;
  flex: 0;
  width: calc(100% - 60px);
}

#send-btn {
  width: 50px;
  flex: 0;
  background: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.message {
  margin: 5px 0;
}

.user {
  text-align: right;
  color: blue;
}

.bot {
  text-align: left;
  color: green;
}