.logo {
	max-width: 165px;
	height: 50px;
	padding-top: 20px;
}
.header-sticky {
	padding: 30px 0 !important;
}
.btn-detailansicht-container {
	margin: 0 auto;
	text-align: center;
}

.bewerben-btn {
	border-radius: 50px;
	font-weight: bold;
}

.main-header .container-fluid::before {
	left: 0;
	bottom: -10px;
}

/* WPML Language Switcher in Header */
.main-header {
	position: relative;
}

.header-language-switcher {
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 1000;
	display: flex;
	align-items: center;
}

.wpml-language-switcher {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wpml-language-switcher .wpml-ls-item {
	display: inline-block;
	padding: 5px 12px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: all 0.3s ease;
	background: #fff;
}

.wpml-language-switcher .wpml-ls-item:hover {
	background: #f5f5f5;
	border-color: #019297;
	color: #019297;
	text-decoration: none;
}

.wpml-language-switcher .wpml-ls-item.active {
	background: linear-gradient(315deg, #73ED7C 0%, #019297 100%);
	color: #fff;
	border-color: #019297;
	font-weight: 600;
}

.wpml-language-switcher .wpml-ls-item.active:hover {
	background: linear-gradient(315deg, #019297 0%, #73ED7C 100%);
	color: #fff;
}

.job-offers-widget {
	width: 100%;
}

.job-offers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.job-offers-widget[data-columns="1"] .job-offers-grid {
	grid-template-columns: repeat(1, 1fr);
}

.job-offers-widget[data-columns="2"] .job-offers-grid {
	grid-template-columns: repeat(2, 1fr);
}

.job-offers-widget[data-columns="3"] .job-offers-grid {
	grid-template-columns: repeat(3, 1fr);
}

.job-offers-widget[data-columns="4"] .job-offers-grid {
	grid-template-columns: repeat(4, 1fr);
}

.job-offer-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-offer-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.job-offer-video-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

.job-offer-video {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.job-offer-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.job-offer-video-wrapper:hover .job-offer-thumbnail {
	opacity: 0.8;
}

.job-offer-video-wrapper.playing .job-offer-thumbnail {
	display: none;
}

.job-offer-title {
	margin: 15px 20px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #333;
}

.job-offer-content {
	padding: 0 20px 15px;
}

.job-offer-salary {
	margin-bottom: 2px;
	font-size: 14px;
	color: #666;
	line-height: 1.2;
}

.job-offer-valid-from {
	margin-bottom: 15px;
	font-size: 14px;
	color: #666;
	line-height: 1.2;
}

.job-offer-divider {
	margin: 15px 0;
	border: none;
	border-top: 1px solid #e0e0e0;
}

.job-offer-company-section {
	margin-top: 15px;
}

.job-offer-company-title {
	margin: 0 0 10px 0;
	font-size: 14px;
	font-weight: 600;
	color: #444;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.job-offer-facility-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 15px;
}

.job-offer-facility-info {
	flex: 1;
}

.job-offer-facility-name {
	font-size: 14px;
	color: #666;
	margin-bottom: 4px;
}

.job-offer-country-state {
	font-size: 14px;
	color: #666;
}

.job-offer-qr-code {
	flex-shrink: 0;
}

.job-offer-qr-code img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	display: block;
	max-width: 100%;
}
.job-offer-qr-code span {
	font-size: 12px;
	display: inline-block;
	text-align: center;
	width: 100%;
}

.job-offer-detail-divider {
	margin: 25px 0 15px 0;
	border: none;
	border-top: 1px solid #e0e0e0;
}

.job-offer-detail-button-wrapper {
	margin-top: 15px;
	text-align: right;
}

.job-offer-detail-button {
	display: inline-block;
	padding: 10px 20px;
	background: linear-gradient(315deg, #73ED7C 0%, #019297 100%);
	background-size: 100% 100%;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-offer-detail-button:hover {
	background: linear-gradient(315deg, #019297 0%, #73ED7C 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.job-offers-widget[data-columns="3"] .job-offers-grid,
	.job-offers-widget[data-columns="4"] .job-offers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.job-offers-grid {
		grid-template-columns: 1fr !important;
	}
	
	.job-offer-title {
		font-size: 16px;
		margin: 12px 15px;
	}
	
	.job-offer-content {
		padding: 0 15px 12px;
	}
	
	.job-offer-salary {
		font-size: 13px;
	}
	
	.job-offer-valid-from {
		font-size: 13px;
	}
	
	.job-offer-company-title {
		font-size: 12px;
	}
	
	.job-offer-facility-name {
		font-size: 13px;
	}
	
	.job-offer-country-state {
		font-size: 12px;
	}
	
	.job-offer-qr-code img {
		width: 60px;
		height: 60px;
	}
	
	.job-offer-detail-button {
		padding: 8px 16px;
		font-size: 12px;
	}
}

.job-offer-detail-language-switcher {
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	z-index: 1000;
	background: transparent;
	padding: 10px;
}

.navbar {
	position: relative;
}

.job-offer-detail-page {
	max-width: 1800px;
	margin: 0 auto;
	padding: 40px 20px;
	border-radius: 30px;
	background-color: #ffffff;
	margin-top: 80px;
	margin-bottom: 80px;
}

.job-offer-detail-title {
	font-size: 32px;
	margin-bottom: 30px;
	color: #333;
}

.job-offer-detail-video-contact-container {
	display: flex;
	gap: 30px;
	background: #fff;
	padding: 30px;
	border-radius: 30px;
	margin: 0 auto 30px auto;
	align-items: center;
	width: 100%;
	max-width: 1300px;
}

.job-offer-detail-video-wrapper {
	flex: 1;
	min-width: 0;
}

.job-offer-detail-video {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.job-offer-detail-thumbnail {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.job-offer-detail-description-wrapper {
	margin: 0 auto 30px auto;
	padding: 30px;
	background: #fff;
	border-radius: 0;
	max-width: 1300px;
}

.job-offer-detail-description-content {
	line-height: 1.6;
	color: #333;
}

.job-offer-detail-info-box {
	margin: 0 auto 30px auto;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 30px;
	max-width: 1300px;
}

.job-offer-detail-info-item {
	font-size: 18px;
	margin-bottom: 15px;
	color: #666;
}

.job-offer-detail-divider {
	margin: 30px 0;
	border: none;
	border-top: 1px solid #e0e0e0;
}

.job-offer-detail-contact-section {
	flex: 1;
	min-width: 300px;
}

.job-offer-detail-contact-title {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
}

.job-offer-detail-contact-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	flex-wrap: wrap;
}

.job-offer-detail-contact-info {
	flex: 1;
	min-width: 200px;
}

.job-offer-detail-contact-item {
	font-size: 18px;
	margin-bottom: 15px;
	color: #666;
}

.job-offer-detail-contact-item a {
	color: #666;
	text-decoration: none;
}

.job-offer-detail-contact-item a:hover {
	text-decoration: underline;
}

.job-offer-detail-whatsapp-button {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(315deg, #73ED7C 0%, #019297 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.job-offer-detail-whatsapp-button:hover {
	background: linear-gradient(315deg, #019297 0%, #73ED7C 100%);
	color: #fff;
	text-decoration: none;
}

.job-offer-detail-qr-wrapper {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.job-offer-detail-qr-wrapper .job-offer-detail-whatsapp-button,
.job-offer-detail-qr-wrapper .elementor-button {
	margin-top: 15px;
}

.job-offer-detail-qr-label {
	font-size: 12px;
	color: #000;
	margin: 0 0 8px 0;
	font-weight: 400;
}

.job-offer-detail-qr-box {
	background: #fff;
	border: 1px solid #73ED7C;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.job-offer-detail-qr-image {
	width: 150px;
	height: 150px;
	border: none;
	border-radius: 0;
	display: block;
}

.job-offer-detail-back-button-wrapper {
	margin-top: 40px;
	text-align: center;
}

.job-offer-detail-back-button {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(315deg, #73ED7C 0%, #019297 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.job-offer-detail-back-button:hover {
	background: linear-gradient(315deg, #019297 0%, #73ED7C 100%);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.header-language-switcher {
		position: absolute;
		top: 5px;
		right: 10px;
	}
	
	.wpml-language-switcher {
		gap: 5px;
	}
	
	.wpml-language-switcher .wpml-ls-item {
		padding: 4px 8px;
		font-size: 12px;
	}
	
	.job-offer-detail-top-header {
		flex-wrap: var(--flex-wrap-mobile);
	}
	
	.job-offer-detail-top-header .job-offer-detail-page {
		padding-top: 15px;
		padding-bottom: 30px;
	}
	
	.job-offer-detail-page {
		padding: 20px 15px;
	}
	
	.job-offer-detail-title {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.job-offer-detail-top-header .job-offer-detail-title {
		font-size: 24px;
		margin-bottom: 0;
	}
	
	.job-offer-detail-video-contact-container {
		flex-direction: column;
		padding: 20px;
		gap: 20px;
	}
	
	.job-offer-detail-video-wrapper {
		width: 100%;
	}
	
	.job-offer-detail-video,
	.job-offer-detail-thumbnail {
		width: 100%;
	}
	
	.job-offer-detail-contact-section {
		min-width: 100%;
		width: 100%;
	}
	
	.job-offer-detail-description-wrapper {
		padding: 20px;
	}
	
	.job-offer-detail-info-box {
		padding: 15px;
	}
	
	.job-offer-detail-info-item,
	.job-offer-detail-contact-item {
		font-size: 16px;
	}
	
	.job-offer-detail-contact-title {
		font-size: 20px;
	}
	
	.job-offer-detail-contact-wrapper {
		gap: 20px;
	}
	
	.job-offer-detail-qr-wrapper {
		width: 100%;
		margin: 0 auto;
		justify-content: center;
	}
	
	.job-offer-detail-qr-box {
		padding: 10px;
	}
	
	.job-offer-detail-qr-image {
		width: 120px;
		height: 120px;
	}
	
	.job-offer-detail-language-switcher {
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		padding: 8px;
	}
}

/* Applicant Profile Styles */
.applicant-profile {
	margin-top: 10px;
	padding: 0px;
	background: #fff;
	border-radius: 8px;
}

.applicant-profile h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
}

.applicant-characteristics {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.applicant-characteristic-item {
	width: 100%;
}

.characteristic-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.characteristic-name {
	font-size: 18px;
	color: #666;
	padding: 0;
}

.characteristic-value {
	font-size: 14px;
	font-weight: 600;
	color: #666;
}

.characteristic-bar-container {
	width: 100%;
	height: 24px;
	background: #f0f0f0;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.characteristic-bar {
	height: 100%;
	background: linear-gradient(315deg, #73ED7C 0%, #019297 100%);
	border-radius: 12px;
	transition: width 0.5s ease;
	min-width: 2px;
}

@media (max-width: 768px) {
	.applicant-profile {
		padding: 15px;
		margin-top: 20px;
	}
	
	.applicant-profile h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	.applicant-characteristics {
		gap: 15px;
	}
	
	.characteristic-name {
		font-size: 16px;
	}
	
	.characteristic-value {
		font-size: 12px;
	}
	
	.characteristic-bar-container {
		height: 20px;
	}
}
