body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background-color: var(--back);
}

.header-box {
width:33%; padding:10px; border:1px solid #433C35;
height:80px; overflow:auto;}

#top-bar {
    width: 100%;
	color:var(--navitxt);
    background-color: var(--body);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    font-size: 14px;
	display:flex; 
	flex-direction:row; 
	justify-content:left; 
	gap:60px; 
	padding:10px 18%; 
	overflow:auto; 
	font-size:14px;
	flex-wrap: wrap; 
	line-height: 1; /* oder 1, um es kompakter zu machen */
    align-items: center; /* zentriert Inhalte vertikal im Flex-Container */
}

#top-bar a {
color:#ABAEAC;
display: inline-flex;
    align-items: center;
    gap: 4px; /* Abstand zwischen Icon und Text */
    text-decoration: none;
    color: inherit;
    line-height: 1.2; /* optional für Links */}

#top-bar i {
color:var(--bordercolor);
    line-height: 1; /* entfernt Extra-Abstand durch Icons */
    display: inline-block;
    vertical-align: middle;}

#nav-left {
    position: fixed;
    bottom: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
	color:#ABAEAC;
	font-size:16px;
	text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
}

#nav-left-ava {
    position: fixed;
    left: 1.5%;
	/* top: 155px; */
    top: 130px;
    transform: translateY(-50%);
    z-index: 9999;
width:200px;
}

.polaroid {
	/* width:200px; */
    width: 85%;
    background: #fbffff;
	color:#2F2107;
    padding: 10px 10px 15px 10px; /* unten dicker */
    border: 1px solid #ddd;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Georgia', serif;
    transform: rotate(-2deg); /* leichter "analog"-Effekt */
    transition: transform 0.3s ease;
}

.polaroid i {
color: #2F2107;}

.polaroid:hover {
    transform: rotate(0deg) scale(1.02);
}

.polaroid img {
    width: 100%;
    filter: grayscale(70%);
    display: block;
}

.polaroid .caption {
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
    color: #2F2107;
    line-height: 1.4;
}

#nav-left i {
    color: #fbffff;
}


#nav-left a {
    color: #ABAEAC;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
	letter-spacing:1px;
    transition: 0.3s;
}

#nav-left a:hover {
    color: #ABAEAC;
}

#forum-container {
    position: relative;
    z-index: 1;
    width: 85%;
    margin-left: 15%;
    padding: 30px;
	box-sizing:border-box;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    min-height: 100vh;
}

#nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 15%;
    height: 100vh;
    background: var(--headernavimg) no-repeat center center;
    background-size: cover;
    z-index:1;
}

#nav-bg a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Neue Headerboxen */

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 10px;
  justify-content: space-between;
}

.info-box {
  flex: 1 1 20%;
  background: var(--body);
  border-top: 3px solid var(--bordercolor);
border-bottom: 3px solid var(--bordercolor);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  height: 140px;
overflow:auto;
}

.info-box h3 {
  margin-top: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c9bca6;
}

.info-box p {
  font-size: 14px;
  margin-top: 10px;
}

/* Navigation überm Board */

navigation {
  display: block;
  border: 0;
  border-bottom: 1px solid var(--bordercolor);

  font-size: 14px;
  max-width: 1200px;
  color: var(--bordercolor);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Links */
.navigation a {
  color: var(--bordercolor);
  text-decoration: none;
  margin: 0 8px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.navigation a:hover {
  border-bottom: 2px solid var(--bordercolor);
  color: #c9bca6 !important;
  transition: 2s;
}

/* Index-Link */
.navigation a:first-of-type {
	display:none;
/*display: block; 
  font-size: 30px; 
  font-weight: bold;
  border-bottom: 1px solid var(--bordercolor); 
	width:70%;
 text-align:center;
	font-family:'Uncial Antiqua', serif;
  margin: 0px auto 16px auto; 
  text-transform: uppercase; */
}

/* Aktives Element */
.navigation .active {
  color: #c9bca6;
  font-weight: bold;
  border-bottom: 2px solid #c9bca6;
}

/* Gesuchsbox */
.gesuch-box.textbasiert {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 130px;
  overflow: hidden;
}

.gesuch-meta {
  display: flex;
	font-size:12px;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-weight: 500;
  color: var(--txt);

}

.gesuch-meta i {
		font-size:14px;
	margin-top:0px;}

.gesuch-desc {
  max-height: 70px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.gesuch-desc::-webkit-scrollbar {
  width: 4px;
}
.gesuch-desc::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}
