/* 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: #fafafa; /* Fallback color */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #eaeaea;
  max-width: 500px; 
  border-radius: 8px;
  text-align: center;
}
h3.modal-chatbot-name{
	font-weight:700;
	margin-bottom:20px;
}
p.modal-desc{
	margin-bottom:30px;
}
a.new-chat-button{
	background:#10a37f;
	padding: 10px 20px;
	color:#fff;
	font-size: 16px;
    font-weight: 500;
	width:100%;
	border-radius:6px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}