body {
    /*font-family: Arial, sans-serif;*/
    /*background-color: #f0f0f0;*/
}

.chat-container {
    width: 100%;
    /*max-width: 900px;*/
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
    background-color: #fff;
    border-radius: 5px;
    /*box-shadow: 0 3px 10px rgba(0,0, 0, 0.1);*/
    display: flex;
    flex-direction: column;
}

#top-chat-options {
    text-align: center;
}

#top-chat-options-left {
    float: left;
    width: 128px;
}

#top-chat-options-center {
    width: 193px;
    display: inline-flex;
    margin-bottom: 10px;
}

#top-chat-options-right {
    float: right;
}

.chat-output {
    flex-grow: 1;
    /*padding: 20px;*/
    overflow-y: auto;
    /*max-height: 400px;*/
    padding-right: 10px;
    margin-bottom: 73px;
}

#initial-chat-message {
    margin: 10px 0;
    text-align: center;
}

.chat-input-form {
    display: flex;
    align-items: center;
    padding: 6px;
    background-color: #f0f0f0;
    border-top: 1px solid #e0e0e0;
    border-radius: 7px;
    margin-bottom: 4px;
}

.chat-input {
    flex-grow: 1;
    border: none;
    border-radius: 3px;
    margin-right: 10px;
    padding: 4px 7px;
}

.chat-submit {
    padding: 0px 8px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 23px;
}

.chat-submit:hover {
    background-color: #0056b3;
}


.user-message-root {
    background: #3a3a3a;
    border-radius: 8px;
    padding: 4px;
    width: 100%;
    display: flex;
    font-weight: bold;
    padding: 10px;
}

.user-message {
    padding: 10px;
    margin: 0px;
    position: relative;
    /*top: -7px;*/
}

.bot-message {
    text-align: left;
    font-weight: normal;
    padding: 10px;
    margin: 0px;
    position: relative;
    /*top: -7px;*/
}


.bot-message-root {
    background: #6189fe38;
    border-radius: 6px;
    width: 100%;
    display: flex;
    padding: 10px;
    text-align: left;
    margin: 10px 0;
}

.img-profile {
    width: 30px;
    height: 30px;
    margin: 7px;
}


.completion-output {
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #ced4fb2b;
}

.select-dropdown {
    
}

#select-category {
    width: 33%;
    float: left;
    margin-right: 2%;
}

#select-example {
    width:65%;
}

/* Dall - E page css start*/
#image_div {
	text-align: center;
}
.image_list_item {
	width: 120px;
    border-radius: 7px;
    margin: 8px;
    border: 2px solid #ababab;
}
.image_preview {
	width: 200px;
    border-radius: 10px;
    margin: 8px;
    border: 2px solid #ababab;
}

#output-label {
    color: red;
}

#bottom-message {
    font-size: 11px;
    margin-top: 40px;
}

.system-message {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    background: #3641b024;
}


/* Dall - E page css end*/




