* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', serif;
	background: linear-gradient(135deg, #1E1A17 0%, #2C2623 50%, #1E1A17 100%);
	background-size: 400% 400%;
	animation: gradientShift 8s ease-in-out infinite;
	min-height: 100vh;
	color: #F5F5F5;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* GENERATOR LAYOUT - 2 SPALTEN */
.main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.copy-button {
	background: linear-gradient(135deg, #F4C066 0%, #D99C45 100%);
	color: #2C2623;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	margin-top: 1rem;
	width: 100%;
	flex-shrink: 0;
}

/* Form Tabs */
.form-tabs {
	display: flex;
	gap: 10px;
	width: 100%;
	margin-bottom: 20px;
}

.tab-button {
	background: linear-gradient(135deg, #F4C066 0%, #D99C45 100%);
	color: #2C2623;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	margin-top: 1rem;
	width: 100%;
	text-align: left;
	box-sizing: border-box;
	transition: transform 0.2s ease, font-size 0.2s ease;
}

.tab-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(244, 192, 102, 0.3);
}

.tab-button.active {
	background: linear-gradient(135deg, #F4C066 0%, #D99C45 100%);
	color: #2C2623;
	font-weight: bold;
	transform: scale(1.075);
	z-index: 1;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

/* Mitarbeiter Section */
.mitarbeiter-section {
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	background: rgba(203, 131, 88, 0.1);
}

.mitarbeiter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.mitarbeiter-title {
	color: #D8C5B0;
	font-weight: bold;
	font-size: 1.1rem;
}

.delete-button {
	background: #C8491D;
	color: #F5F5F5;
	border: none;
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.delete-button:hover {
	background: #FF8232;
	transform: scale(1.05);
}

.mitarbeiter-fields {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
}

.add-button {
	background: linear-gradient(135deg, #F4C066 0%, #D99C45 100%);
	color: #2C2623;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	margin-top: 1rem;
	width: 100%;
}

.add-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(244, 192, 102, 0.3);
}

.generate-button {
	background: linear-gradient(135deg, #C8491D 0%, #FF8232 100%);
	color: #F5F5F5;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	width: 100%;
	font-size: 1.1rem;
	margin-top: 2rem;
}

.generate-button:hover {
	border-color: #F4C066;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 130, 50, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
	.main-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.mitarbeiter-fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		flex-direction: column;
		gap: 1rem;
	}
	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}
	.main-container {
		padding: 2rem 1rem;
	}
	.form-tabs {
		flex-direction: column;
	}
}