body {
    font-family: Arial, sans-serif;
    background-color: #E8ECEF;
  }
  

  body {
    display: flex;
    flex-direction: column;   /* Make main axis vertical */
    min-height: 100vh;        /* Minimum height of 100% of the viewport height */
}

footer {
    margin-top: auto;         /* Push the footer down to the bottom of the body */
}



header {
    background-color: black !important;
}
header.navbar {
    background-color: black !important;
}


.nav-link, .navbar-brand {
    color: white !important;
}

.nav-item.active .nav-link {
    color: white !important;
}

.navbar-toggler {
    border-color: white !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

  
  section {
    color: black;
  }
  
  footer {
       background-color: black !important;
  
  }
  body {
    font-family: Arial, sans-serif;
}

.chat-container {
    background-color: #E5DDD5;
    width: 400px;
    height: 600px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat {
    flex: 1;
    overflow: auto;
    margin-bottom: 10px;
}

input[type="text"], input[type="email"] , input[type="password"], textarea, button {
  border-radius: 25px !important;
}


button {
    width: 20%;
    padding: 10px;
    background-color: #128C7E;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 5px;
}

button:hover {
    background-color: #075E54;
}

input[type="text"], button {
    border-radius: 25px;
}
#chatbox {
  width: 300px;
  height: 400px;
  border: 1px solid #ccc;
  padding: 10px;
  overflow: auto;
}

#messages {
  height: 90%;
  overflow: auto;
}

#input {
  width: 70%;
}

#send {
  width: 25%;
}

.container form {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f8f8;
  max-width: 500px;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 20px;
}
.container  {

  margin-top: 25px;
  padding: 25px;
}
.form-container {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f8f8;
  max-width: 500px;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 20px;
}


