body {
/*	overscroll-behavior: none;*/
	margin: 0px;
	font-family: Arial;
}

table, th, td {
	border: 1px solid black;
	border-collapse: collapse;
}

body::-webkit-scrollbar {
	display: none;
}
/* wenn class user bubble auf der rechten seite, wenn class assistant bubble auf der linken seite */
.bubble {	
	display: inline-block;
	padding: 10px;
	border-radius: 10px;
	margin: 5px;
	max-width: 90%;
	min-width: 70%;
	box-sizing: border-box;
}
/* bubble wenn auf smartphone, dann kleiner schrift */
@media (max-width: 600px) {
	.bubble {
		font-size: 80%;
	}
	.filecontent {
		font-size: 70%;
	}
}
.filelist{
	overflow-y: auto;	
}
.bubble.user {
	background-color: #dcf8c6;
	color: black;
	align-self: flex-end;
}
.bubble.assistant {
	background-color: #f1f0f0;
	color: black;
	align-self: flex-start;
}
/* system bubble unsichtbar */
.bubble.system {	
	display: none;
}
.chat-container{
	display: flex;
	flex-direction: column;
	height: 100dvh;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
.chat{
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
.header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background-color: #f1f0f0;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
.chat-menu-element{
	padding: 10px;
	border-bottom: 1px solid #ccc;
}
.chat-menu-element button{
	padding: 10px;
	cursor: pointer;
}
.chat-menu-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.chat-menu-button{
	background-color: #f1f0f0;
	border: none;
	padding: 10px;
	cursor: pointer;
	margin: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
/* Unter Chat, Gesamter Bereich füllen ohne input */
.messages {
	flex: 1;
	overflow-y: auto;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;

}
/* Feste höhe am unteren Rand der Seite */
.input{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding: 10px;
	background-color: #f1f0f0;
	box-sizing: border-box;
	border-top: 1px solid #ccc;

}
#input{
	width:80%;
	height:100px;
	font-family: sans-serif;
}
.stats{
	font-size: 70%;
	user-select: none;
}
pre{
	overflow:auto;
}
button{
	margin-left: 15px;;
}