.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: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* 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: 33%;
}

.joblist_job_top{
	background: #efefef;
  color: #333;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  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;
}

.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;	
}


 
/* ── GLOBAL ALERT ────────────────────────────────────────────────── */
.GW_joblist_global-alert {
    background: color-mix(in srgb, var(--f003) 12%, var(--f002));
    border-left: 3px solid var(--f003);
    padding: 10px 14px;
    margin-bottom: 14px;
}
.GW_joblist_global-alert a {
    color: var(--f005);
    font-size: 0.8em;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
 
/* ── JOBLIST WRAPPER ─────────────────────────────────────────────── */
.GW_joblist {
    display: flex;
    min-height: 520px;
    border: 1px solid var(--f007);
    background: var(--f002);
}
 
/* ── SIDEBAR NAV ─────────────────────────────────────────────────── */
.GW_joblist_nav {
    display: flex;
    flex-direction: column;
    width: 190px;
    min-width: 190px;
    background: var(--f002);
    border-right: 1px solid var(--f007);
    flex-shrink: 0;
}
 
.GW_joblist_nav-heading {
    font-family: var(--font-january);
    font-size: 1em;
    color: var(--f001);
    text-align: center;
    padding: 16px 12px 13px;
    border-bottom: 1px solid var(--f007);
    letter-spacing: 0.04em;
    position: relative;
}
 
.GW_joblist_nav-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--f007);
    border-left: 3px solid transparent;
    color: var(--f001);
    font-family: var(--font-zalando);
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 11px 14px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-left-color 0.2s;
    width: 100%;
}
 
.GW_joblist_nav-btn:hover {
    background: var(--f007);
    color: var(--f001);
    border-left-color: var(--f007);
}
 
.GW_joblist_nav-btn.active {
    background: var(--f007);
    color: var(--f001);
    border-left-color: var(--f007);
}
 
/* ── CONTENT AREA ────────────────────────────────────────────────── */
.GW_joblist_content {
    flex: 1;
    background: var(--f002);
    overflow: hidden;
}
 
.GW_joblist_infotext {
    padding: 18px 24px 14px;
    font-size: 0.83em;
    color: var(--f001);
    line-height: 1.75;
    border-bottom: 1px solid var(--f007);
}
 
/* ── TABCONTENT ──────────────────────────────────────────────────── */
.GW_joblist_tabcontent {
    display: none;
    padding: 18px 20px;
    animation: GW_jl_fade 0.35s ease;
}
 
.GW_joblist_tabcontent.active { display: block; }
 
@keyframes GW_jl_fade {
    from { opacity: 0; transform: translateY(3px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* ── JOB GRID ────────────────────────────────────────────────────── */
.GW_joblist_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}
 
/* ── JOB CARD ────────────────────────────────────────────────────── */
.GW_joblist_card {
    background: var(--f002);
    border: 1px solid var(--f007);
    display: flex;
    flex-direction: column;
}
 
.GW_joblist_card-header {
    padding: 0 12px 10px;
    border-bottom: 1px solid var(--f007);
    position: relative;
    background: var(--f002);
}
 
.GW_joblist_card-header::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--f007), transparent);
    margin: 0 -12px 10px;
}
 
.GW_joblist_card-title {
    font-family: var(--font-january);
    font-size: 1em;
    color: var(--f007);
    margin: 0 0 3px 0;
    line-height: 1.3;
    padding-right: 60px;
}
 
.GW_joblist_card-place {
    font-size: 0.7em;
    color: var(--f001);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
 
.GW_joblist_card-options {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    font-size: 0.67em;
}
 
.GW_joblist_card-options a {
    color: var(--f004);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
}
 
.GW_joblist_card-options a:hover { color: var(--f007); }
 
.GW_joblist_card-desc {
    padding: 10px 12px;
    font-size: 0.8em;
    color: var(--f001);
    line-height: 1.65;
    min-height: 65px;
    max-height: 95px;
    overflow-y: auto;
    flex: 1;
    border-bottom: 1px solid var(--f007);
}
 
.GW_joblist_card-desc::-webkit-scrollbar,
.GW_joblist_card-staff-list::-webkit-scrollbar { width: 3px; }
.GW_joblist_card-desc::-webkit-scrollbar-track,
.GW_joblist_card-staff-list::-webkit-scrollbar-track { background: var(--f008); }
.GW_joblist_card-desc::-webkit-scrollbar-thumb,
.GW_joblist_card-staff-list::-webkit-scrollbar-thumb { background: var(--f004); }
 
.GW_joblist_card-staff-heading {
    padding: 5px 12px;
    font-size: 0.67em;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--f001);
    border-bottom: 1px solid var(--f007);
}
 
.GW_joblist_card-staff-list {
    padding: 7px 12px 10px;
    max-height: 85px;
    overflow-y: auto;
    background: var(--f002);
}
 
.GW_joblist_staff-entry {
    font-size: 0.78em;
    color: var(--f001);
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
 
.GW_joblist_staff-entry::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--f003);
    flex-shrink: 0;
}
 
.GW_joblist_staff-job {
    color: var(--f006);
    font-size: 0.9em;
}
 
.GW_joblist_otherinfos-btn {
    display: inline-block;
    font-size: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--f006);
    cursor: pointer;
    border: 1px solid var(--f006);
    padding: 2px 6px;
    margin-left: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.GW_joblist_otherinfos-btn:hover {
    color: var(--f007);
    border-color: var(--f007);
}
 
/* ── FORMS ───────────────────────────────────────────────────────── */
.GW_joblist_forms { padding: 16px 18px; }
 
.GW_joblist_form {
    background: var(--f002);
    padding: 18px 22px;
	color: var(--f001);
}
 
.GW_joblist_form-heading {
    font-family: var(--font-january);
    color: var(--f007);
    font-size: 15px;
	font-weight:700;
    margin: 0 0 14px 0;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--f007);
    position: relative;
}

.GW_joblist_form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
 
.GW_joblist_field { display: flex; flex-direction: column; gap: 4px; }
 
.GW_joblist_field label {
    font-size:11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--f007);
}
 
.GW_joblist_field-desc {
    font-size: 10px;
    color: var(--f001);
    margin-top: -2px;
    margin-bottom: 2px;
}
 
.GW_joblist_field input[type="text"],
.GW_joblist_field select,
.GW_joblist_field textarea {
    background: var(--f008);
    border: 1px solid var(--f007);
    color: var(--f001);
    font-family: var(--font-zalando);
    font-size: 0.82em;
    padding: 7px 10px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
 
.GW_joblist_field input:focus,
.GW_joblist_field select:focus,
.GW_joblist_field textarea:focus { border-color: var(--f007); }
 
.GW_joblist_field textarea { resize: vertical; min-height: 65px; }
.GW_joblist_field select option { background: var(--f002); }
 
.GW_joblist_submit {
    background: transparent;
    border: 1px solid var(--f007);
    color: var(--f007);
    font-family: var(--font-zalando);
    font-size: 0.73em;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 22px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 4px;
}
 
.GW_joblist_submit:hover {
    background: var(--f007);
    color: var(--f002);
}
 
.GW_joblist_alert {
    background: color-mix(in srgb, var(--f003) 10%, var(--f002));
    border-left: 3px solid var(--f003);
    padding: 9px 13px;
    font-size: 0.8em;
    color: var(--f005);
    margin-bottom: 14px;
}
        
button.tablinks {
    background: transparent;
    border: none;
    border-bottom: 1px solid va(--f007);
    border-left: 3px solid transparent;
    color: var(--f001);
    font-size: 0.75em;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 11px 14px;
    text-align: left;
    margin: 0;
    width: 100%;
    transition: background 0.2s, color 0.2s, border-left-color 0.2s;
}

button.tablinks:hover {
    background: var(--f007);
    color: var(--f002);
}

button.tablinks.active {
    color: var(--f001);
}

button.tablinks:empty {
    display: none;
}