@charset "utf-8";
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: local(''), url('fonts/Roboto-Light.ttf') format('truetype') /* Safari, Android, iOS */
}
:root {
 --max-width: 1024px;
 --sidebar-width: 220px;
 --header-height: 100px;
 --footer-height: 60px;
 --bg-color: #f9f9f9;
 --bg-mobile-nav: #e8f0fe;
 --box-bg: #fff;
 --border-color: #ccc;
 --radius: 8px;
 --spacing: 1rem;
 --spacing-anmeldung: 2rem;
 --text-color: #111;
 --line-height: 160%;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Roboto";
	line-height: 1.5;
	background-color: var(--bg-color);
	color: var(--text-color);
}
header {
	height: var(--header-height);
	width: 100%;
	background: url('/assets/images/header.gif') center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: right;
	padding: 0 var(--spacing);
}
footer{
margin-top:16px;	
}
.header-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}
.header-image {
	background: url('header.gif') center/cover no-repeat;
	height: var(--header-height);
	position: relative;
}
.header-link {
	display: block;
	width: 100%;
	height: 100%;
}
.hamburger {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	z-index: 11;
}
 @media (min-width: 769px) {
.hamburger {
	display: none;
	z-index: 3;
}
}
.desktop-nav {
	display: flex;
	gap: var(--spacing);
	z-index: 2;
}
.desktop-nav a, .mobile-nav a, footer nav a {
	text-decoration: none;
	color: var(--text-color);
	margin: 0.5rem;
}
.mobile-nav {
	display: none;
	flex-direction: column;
	background-color: var(--bg-mobile-nav);
	padding: var(--spacing);
	border: 1px solid var(--border-color);
	position: absolute;
	top: var(--header-height);
	right: 0;
	width: 200px;
	z-index: 10;
}
.mobile-nav.hidden {
	display: none;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	gap: var(--spacing);
	padding: var(--spacing);
}


.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--spacing);
}


.sidebar {
	width: var(--sidebar-width);
	display: flex;
	flex-direction: column;
	gap: var(--spacing);
}
.centered {
	text-align: center;
}
.borderolur {
	border: 1px solid var(--border-color);
}
.borderou {
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.borderu {
	border-bottom: 1px solid var(--border-color);
}




.box {
	flex: 1;
	width: 100%;
	background-color: var(--box-bg);
	line-height: var(--line-height);
	margin-right: auto;
	margin-left: auto;
	padding: 10px;
}
@media (min-width: 769px) {
.box {
	/*width: 250px;*/
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: var(--spacing);

}
}
.greeting {
	border-bottom: 1px solid var(--border-color);
	background-color: var(--box-bg);
	margin-top: 10px;
margin-bottom:16px;
	padding: 10px;
}
 @media (min-width: 769px) {
.greeting {
		border: 1px solid var(--border-color);
	border-radius: var(--radius);
	max-width: 1024px;
margin: 16px auto 16px auto;
}
}

.content-box {
	border-bottom: 1px solid var(--border-color);
	overflow-y: auto;
	padding: var(--spacing);
	background-color: var(--box-bg);
	
}
@media (min-width: 769px) {
.content-box {
border: 1px solid var(--border-color);
	border-radius: var(--radius);
}
}


.main{

	padding:0px;
}
@media (min-width: 769px) {
.main {
	
	margin-top:16px;
}
}

.anmeldung {
	margin-bottom: 20px;
	padding: var(--spacing-anmeldung);
}
@media (min-width: 769px) {
.anmeldung {
	width: 400px;
	margin-top: 20px;
}
}
h1 {
	font-size: 24px;
	margin-bottom: 20px;
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 16px;
	margin-bottom: 10px;
}
.tall {
	height: 300px;
}
.short {
	height: 150px;
}
.footerg {
	height: var(--footer-height);
	background-color: #eee;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footerw {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*  Mobile Styles */
@media (max-width: 768px) {
.container {
	flex-direction: column;
}
.content, .sidebar {
	width: 100%;
}
.desktop-nav {
	display: none;
}
.mobile-nav {
	display: flex;
}
}




a:link, a:visited, a:hover, a:active {
	color: green;
}
a:link.navoben, a:visited.navoben, a:hover.navoben, a:active.navoben {
	color: black;
}
 @media (min-width: 769px) {
a:link.navoben, a:visited.navoben, a:hover.navoben, a:active.navoben {
	color: var(--bg-mobile-nav);
}
}
input[type="text"], input[type="email"], input[type="search"], input[type="password"], input[type="tel"], .titel {
	width: 80%;
	padding: 10px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	box-sizing: border-box;
	margin-bottom: 10px;
}
button {
	padding: 8px;
	border: 1px solid #888;
	border-radius: 6px;
	background: #f5f5f5;
	cursor: pointer;
	margin-top: 10px;
}
.conv {
	position: relative;
	padding: 6px 28px 6px 8px;
	border-radius: 6px;
	cursor: pointer;
	margin-bottom: 6px;
	border: 1px solid transparent
}
.conv:hover {
	border-color: #e0e0e0;
	background: #fafafa
}
.conv.active {
	background: var(--bg-mobile-nav);
	border-color: #c9d3f5
}
.conv .del {
	position: absolute;
	right: 0px;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #c00;
	top: 25%;
	cursor: pointer;
	font-size: 17px;
	line-height: 1
}
.conv .del:hover {
	color: #f00
}
.conv .exp {
	position: absolute;
	right: 38px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #06c;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
}
.conv .exp:hover {
	color: #00f;
}
#chat {
	flex: 1;
	padding: 12px;
	overflow: auto;
	background: #f9f9f9;
	width: 97%;
}
.msg {
	margin: 10px 0
}
.user {
	font-weight: bold
}
.assistant {
	color: #075E54
}
.user-tag {
font-size:.9rem;
	color: #333;
	background: #eef2ff;
	border: 1px solid #cfd8ff;
	padding: 8px;
	border-radius: 6px;
	margin-right: 8px;
}
.muted {
	color: #666;
 font-size:.92rem;
	margin-top: 10px
}
ul.links {
	padding-left: 18px;
	margin: 8px 0
}
textarea {
	width: 100%;
	height: 60px;
	border: none;
}
.onb {
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 16px;
	margin: 12px;
	background: #f8fafc;
}
.onb h3 {
	margin: 0 0 6px;
}
.onb .muted {
	color: #475569;
}
#chat .msg {
	white-space: pre-wrap;
}  /* \n und \r\n als Umbruch anzeigen */
select {
	width: 100%;
	padding: 6px;
	border: 1px solid #ccc;
	border-radius: 6px;
}
.loggedin {
	margin-top: 20px;
	padding: var(--spacing);
	line-height: var(--line-height);
}
 @media (min-width: 769px) {
.loggedin {
	width: 768px;
	margin-right: auto;
	margin-left: auto;
}
}
.card {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 14px;
}
 @media (min-width: 769px) {
.card {border: 1px solid #ddd;
	border-radius: 8px;
	padding: 14px;
	margin-bottom: 14px;
}
}
.row {
	display: flex;
	gap: 12px;
}
.row > div {
	flex: 1
}
label {
	display: block;
	font-weight: 600;
	margin: 8px 0 4px
}
.actions {
	margin-top: 12px
}
.ok {
	color: #0a7c2f;
	margin-bottom: 10px
}
.err {
	color: #b00020;
	margin-bottom: 10px
}
.wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 12px;
}
small.help {
	color: #666
}
.form-group.delete-on-close {
	text-align: left;
}
.form-group.delete-on-close label {
	display: flex;
	align-items: center;
	gap: 8px;
}
.nopad{
	margin-left:15px
}