BODY * {
	box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
	margin: 20px;
}
button {
	font-size: 1.2em;
}
.btn {
	border-color: #666;
}
.btn:hover {
	background-color: #abcdef;
	color: #FFF;
	border-color: #666;
}

.hidden {
	display: none;
}

#chatbot {
	width: 96%;
	border: 2px solid #ccc;
	padding: 10px;
	border-radius: 5px;
	overflow-y: auto;
	margin: 0px 0 10px 0;
	background-color: #000;
	color: #eee;
	font-size: 1.4em;
	max-height: 350px;
	min-height: 350px;
	overflow-y: auto;
    position: relative; /* or absolute/fixed */
}

#chatbox {
	background-color: #f9f9f9;
	background-color: #e6e6e6;
	width: 96%;
	max-height: 350px;
	min-height: 350px;
	border: 1px solid #999;
	border: 1px solid #fcfcfc;
	border: 2px solid #ccc;
	padding: 10px;
	border-radius: 5px;
	overflow-y: auto;
	margin: 6px 0 10px 0;
}

.form-check-label {
	margin-left: 0px;
	padding-left: 36px;
	color: #333333;
}
.form-check {
	padding-left: 0;
	margin-top: 10px;
}
.form-check-inline {
	margin-right: 4px;
}

.result-item {
	border: 1px solid #bbb;
	padding: 8px;
	margin: 10px 0;
	border-radius: 10px;
	background-color: #ffffff;
}
.result-item h3 {
	margin: 0 0 5px 0;
	font-size: 24px;
}
.result-snippet {
	margin: 5px 0;
	/*
	white-space: pre-wrap;
	*/
}
.read-more {
	margin: 0 0 0 25px;
}
.read-more:focus {
	outline: none;
}
span.srctag {
	font-size: 18px;
	font-style: italic;
}
.desc {
	font-size: 18px;
	color: #777;
}

#countWanted {
	width: 60px;
	padding: 0px 0px 0px 15px;
	border-radius: 5px;
	font-size: 1.2em;
	line-height: 1.2em;
	margin: 0 2px 0 0;
	display: inline-block;
	border: 1px solid #999999;
	height: 100%;
	height: 30px;
}

#userInput {
	width: 600px;
	padding: 0px 25px 0px 15px; /* Space for the button */
	border-radius: 5px;
	font-size: 1.2em;
	line-height: 1.2em;
	margin: 0 2px 0 0;
	border: 1px solid #999999;
	height: 100%;
	height: 30px;
}

#button-ask {
	border-radius: 5px;
	display: inline;
	height: 100%;
	font-size: 16px;
	line-height: 16px;
	margin: 0 0 4px 0;
	margin: 0;
}

#ig-1 {
	height: auto;
	padding: 1px;
	border: 0px solid #0000ff;
}

/* Container to position input and button */
.input-container {
	position: relative;
	display: inline-block;
	width: auto;
	height: 100%;
}

/* Style for clear button */
.clear-btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	line-height: 18px;
	border: 1px solid #999;
	background: #f0f0f0;
	color: #ff0000;
	font-weight: bold;
	font-size: 16px;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
	display: none;
}

.clear-btn:hover {
	background: #ffffff;
	color: #ff0000;
}

#control-bar {
	margin: 0 0 6px 0;
	display: none;
}

.text-small-caps {
	font-variant: small-caps;
}

#chatbot p {
	margin-bottom: 8px;
	padding: 6px 10px;
	border-radius: 8px;
	max-width: 90%;
}
#chatbot p strong {
	display: block;
	margin-bottom: 4px;
}
#chatbot p:nth-child(even) {
	background-color: #222;
}
#chatbot p:nth-child(odd) {
	background-color: #333;
}

.chat-message {
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 8px;
	max-width: 90%;
}
.chat-message.user-msg {
	background-color: #333;
	background-color: #f6f6f6;
	color: #000000;
	text-align: left;
}
.chat-message.bot-msg {
	background-color: #222;
	color: #cfc;
	text-align: left;
}

.bot-msg-label {
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 8px;
	max-width: 90%;
	color: #000000;
	font-style: italic;
	background-color: #f6f6f6;
	text-align: left;
}



