.chat-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-top:0px;
	background-color:#F9F9F9;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding:10px;
	
}

.chat-header h3{
    color:#999999;
    text-transform: uppercase;
    font-weight: bold;
}

.chat-bottom {
	bottom: 20px;
	position:absolute;
	width: 100%;
}

.chat-title {
    margin: 0;
    font-size: 18px;
}

.occupation {
    font-size: 14px;
    color: #888;
}

.chat-messages {
	height: calc(100% - 175px);
    overflow: scroll;
    margin-bottom: 20px;
	width:725px;
	margin: 20px auto;
	padding-right: 15px;
}

.chat-message {
    margin-bottom: 10px;
}

.user-message {
    background-color: #d9eaf5;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
   /* width: 80%; */
    float: right;
}

.ai-message {
    background-color: #fff;
    color: #333;
    padding: 20px 0px 20px 0px;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
}

.chat-message h3 {
    font-size: 24px;
    line-height: 1.0;
    letter-spacing: 0px;
    font-weight:bold;
    margin-top: 0px !important;
}

.ai-message p{
    margin:0px;
}

.chat-input form {
    display: flex;
    align-items: center;
	max-width:725px;
	margin:0 auto;
	position:relative;
}

.chat-input input[type="text"] {
    flex: 1;
    padding: 20px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #ddd;
	height:52px
}

.chat-input button[type="submit"] {
    background-color: transparent;
    border: none;
    color: #007bff;
    font-size: 20px;
    cursor: pointer;
	right:0px;
	position:absolute;
}

.custom-openai-chat {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    font-size: 15px;
    font-family:ui-sans-serif,-apple-system,system-ui,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Helvetica,Apple Color Emoji,Arial,Segoe UI Emoji,Segoe UI Symbol;
}

.custom-openai-chat-wrapper {
	height: calc(100vh - 240px);
    width: 100%;
    margin: 0 auto;
	margin-bottom:20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0px;
    font-family: Arial, sans-serif;
	min-height:500px;
	border: 1px solid #ddd !important;
	position: relative;
}

.custom-openai-chat2 {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 0px 20px 20px;
    font-family: Arial, sans-serif;
}

.custom-openai-chat-wrapper2 {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 60px;
    font-size: 15px;
    font-family:ui-sans-serif,-apple-system,system-ui,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,Helvetica,Apple Color Emoji,Arial,Segoe UI Emoji,Segoe UI Symbol;
}

#bottomchat {
    display:block;
    padding: 0px;
}
.recent-conversations h3 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-left: 10px;
    font-weight:bold;
    color: #999999;
}

.recent-conversations {
    width: 300px;
    padding: 10px 20px 10px 10px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-right: 10px;
    border-right: 1px solid #f1f1f1;
    text-transform:capitalize;
    float:left;
}

.recent-conversations2 {
    width: 300px;
    padding: 10px 20px 10px 10px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-right: 10px;
    border-right: 1px solid #f1f1f1;
    text-transform:capitalize;
    float:left;
}

.conversation-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.conversation-list li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.conversation-list li:hover {
    background-color: #e0e0e0;
}


* {
  box-sizing: border-box;
}

/* The browser window */
.container2 {
  border: 3px solid #f1f1f1;
  border-radius: 12px;
  display:inline;
    width: calc(100% - 300px);
  float: left;
  margin-top:20px;
  margin-bottom:100px;
  overflow:hidden;
  height: 510px;
}

/* Container for columns and the top "toolbar" */
.row2 {
  padding: 10px;
  background: #f1f1f1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
}

.left {
  width: 15%;
}

.right {
  width: 10%;
}

.middle {
  width: 75%;
}

/* Clear floats after the columns */
.row2:after {
  content: "";
  display: table;
  clear: both;
}

/* Three dots */
.dot {
  margin-top: 4px;
  height: 12px;
  width: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

/* Style the input field */
input[type=text] {
  width: 100%;
  border-radius: 3px;
  border: none;
  background-color: white;
  margin-top: -8px;
  height: 25px;
  color: #666;
  padding: 5px;
}

/* Three bars (hamburger menu) */
.bar {
  width: 17px;
  height: 3px;
  background-color: #aaa;
  margin: 3px 0;
  display: block;
}

/* Page content */
.content {
  padding: 15px 0px 0px 0px;
}

#new-session-btn{
    width:100%;
    margin: 4px 0px 0px 0px;
    height:40px;
    border-radius: 20px;
}