body{
	background: #86109B;
	margin: 0;
	height: 100%;
}
.container{
	width: 100%;
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mic-container {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
    background: white;
}
.mic {
    color: red;
    font-size: 26px;
    padding: 22px 26px;
    background: white;
}
.mic:hover {
    cursor: pointer;
    background: #e4e4e4;
}
.mic:active {
    background: black;
    color: white;
}
.chatBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    padding-bottom: 20px;
}
.msg {
    font-family: 'Montserrat';
    font-weight: bold;
    background: white;
    padding: 15px;
    margin: 15px;
    margin-bottom: 2px;
    width: 70%;
}
.userMsg {
    text-align: right;
    background: #e8dddd;
    align-self: flex-end;
    animation: slide-left 0.6s ease;
    border-radius: 5px 20px 0px 5px;
}
.botMsg{
	animation: slide-right 0.8s ease;
    border-radius: 0px 5px 5px 20px;
}
.chatText {
    flex: 2;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    background: #f1f1f1;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e3071;
    color: white;
    font-size: 26px;
    font-family: 'Montserrat';
    font-weight: bolder;
    text-align: center;
    padding: 11px;
    -webkit-box-shadow: 0px 3px 25px -1px rgba(0,0,0,0.54);
    -moz-box-shadow: 0px 3px 25px -1px rgba(0,0,0,0.54);
    box-shadow: 0px 3px 25px -1px rgba(0,0,0,0.54);
}
.header-btn {
    font-size: 20px;
    color: #3f5ecc;
    padding: 9px 14px;
    font-weight: bolder;
}
.header-btn:active {
    color: #192654;
}
.header-btn:hover{
    cursor: pointer;
}

@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #34083c;
  color: white;
  margin: auto;
  padding: 20px;
  width: 80%;
  margin-top: 35%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
font-family: 'Montserrat';
}
.modal-content > h2 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid white;
    text-align: center;
    padding-bottom: 10px;
}

.khisti {
    margin: 13px 0px;
    font-size: 18px;
    font-weight: 600;
}
/* The Close Button */
.close {
  align-self: flex-end;
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.submit {
    background: #d700ff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}
.submit:active {
    background: #7d1490;
}

}
#khistiListModal {
    overflow-y: scroll;
}
#listModal > .modal-content {
    margin-top: 18%;
    height: 72%;
    overflow-y: scroll;
    justify-content: flex-start;
}
#khistiListModal > p {
    border: 1px solid;
    padding: 5px;
    font-weight: bold;
    color: coral;
    font-size: 17px;
}