.joblist{
	display: flex;
}

/* Style the tab */
.tab {
  overflow: hidden;
	display: flex;
	 flex-flow: column wrap;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #c29e85;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #c29e85;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
	box-sizing: border-box;
	width: 100%;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}


.joblist_infotext{
	margin: 20px;
	text-align: justify;
	font-size: 13px;
}

.joblist_job_flex{
	display: flex;
	flex-flow: row wrap;
}

.joblist_job_flex > div{
	margin: 5px;	
}

.joblist_job{
	width: 30%;
}

.joblist_job_top{
	background: #bca494;
  color: #fff;
  border-top: 1px solid #ac4d51;
  padding: 5px;
	box-sizing: border-box;
	text-align: center;
}

.joblist_job_desc{
	height: 100px;
	overflow: auto;
	padding: 2px 5px;
	box-sizing: border-box;
	text-align: justify;
}

/* Scrollbar anpassen */
.joblist_job_desc::-webkit-scrollbar {
    width: 8px; /* Breite des Scrollbalkens */
    height: 8px; /* Höhe des horizontalen Scrollbalkens */
}

/* Scrollbalken "Daumen" anpassen (das, was du ziehst) */
.joblist_job_desc::-webkit-scrollbar-thumb {
    background-color: #bca494; /* Farbe des Daumens */
    border-radius: 0px; /* Keine abgerundeten Ecken */
    min-height: 30px; /* Mindesthöhe des Daumens (vertikal) */
}

/* Hintergrund des Scrollbalkens */
.joblist_job_desc::-webkit-scrollbar-track {
    background: #d1c7b9; /* Hintergrund des Tracks */
    border-radius: 0px; /* Keine abgerundeten Ecken */
}

.joblist_job_staff_top{
	text-align: center;	
}

.joblist_job_staff{
	padding: 10px;
	box-sizing: border-box;
	max-height: 100px;
	overflow: auto;
}

	.joblist_staff{
	padding: 2px 5px;		
}

.joblist_staff::before{
		content: "» ";
	padding-right: 2px;
}

.joblist_otherinfos{
	padding: 10px 20px;	
}

.j1 {
    font-family: 'A Pompadour Display', sans-serif;
    font-size: 18px; /* Schriftgröße anpassen, falls gewünscht */
    text-transform: lowercase; /* Alles klein geschrieben */
    text-align: center; /* Zentriert den Text */
	color: #84645b;
	min-height: 28px; /* Passe die Höhe nach Bedarf an */
}

.j2 {
background-color: #ba7a70; /* Balkenfarbe */
    color: white; /* Schriftfarbe */
    font-family: 'Fjalla One', sans-serif; /* Schriftart */
    display: inline-block;
    font-size: 12px;
    width: 100%; /* Passt sich der Breite der Zelle an */
    text-align: center; /* Text horizontal mittig */
    text-transform: uppercase; /* Text in Großbuchstaben */
    line-height: 1.5; /* Vertikale Ausrichtung des Texts */
	min-height: 20px; /* Passe die Höhe nach Bedarf an */
}

	
.j3 {
    text-transform: uppercase;
    font-size: 15px;
    border-bottom: 2px #84645b solid;
    text-align: center;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 3px;
    font-family: 'Fjalla One', sans-serif;
	min-height: 20px; /* Passe die Höhe nach Bedarf an */
}