@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Share+Tech+Mono&display=swap');

*{
    padding:0px;
    margin:0px;
    box-sizing:border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    border:10px groove #ccc;
    background-image:radial-gradient(#edfd05,#05fde0,#f7ff83);
  }

  .top-section{
    display: flex;
    flex-direction: row;
  }
  .chat-bot-head{
    font-family: "Share Tech Mono", serif;
    font-size:70px;
    text-shadow: 0 0 5px blue;
    position:relative;
  }

  .theme-container{
    display:flex;
    float:left;
    margin-left: 25px;
    flex-direction: row;
    margin-top:-15px;  
  }

  .bright-img,.dark-img{
    height:20px;
    width:20px;
    margin:2px;
  }

  .bright-img{
    background-color: #fff !important;
  }

  .dark-img{
    background-color: #fff !important;
  }

  #chatbox {
    width: 100%;
    max-width:100%;
    height: 400px;
    border: 0px;
    padding: 10px;
    overflow-y: scroll;
    margin-bottom: 10px;

  }
  .message {
    margin: 5px 0;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    font-size: 20px;
  }
  .user {
    background: #fff !important;
    color: #004085 !important;
    border-radius: 17px 17px 0px 17px;
    float:right;
  }
  .bot {
    background: #fff !important;
    width: 50%;
    border-radius: 0px 17px 17px 17px;
    color: #155724 !important;
    align-self: flex-start;
  }
  #control {
    display: flex;
    width: 80%;
    max-width: 600px;
    position:relative;
    margin-left:auto;
    margin-right: 25px;
    bottom:20px;
    box-shadow: 2px 2px rgb(246, 191, 40);
    border-radius: 20px;
    padding-left:20px;
    font-size: 18px;
    background-color: #fff !important;
}
  
  button {
    padding: 10px;
    border:none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
  }
    button:hover {
    border:none;
  }
.text{
    border:0px;
    width:90%;
    border-radius: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff !important;
}
.send-fill{
    background-color: #261f1f;
    width:60px;
    margin-left:5px;
}
.bi-send-fill{
    color:black !important;
}
.bi-send-fill:hover{
    border:0px;
}


@media max-width {
  
}