/*************************************
 *
 * probenplaner.css
 * 2026-05-17 Erstellt – eigenes CSS ohne twentyten-Theme-Abhängigkeit
 * 2026-05-18 Login-Info: Feature-Cards mit Icons statt einfacher Liste
 * 2026-05-19 Registrierungs-spezifisches CSS nach neuregistrierung.css ausgelagert
 *
 *************************************/

/* =============================================
 * Reset & Basis
 * ============================================= */

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 20px;
	background-color: #cfcfcf;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}

a {
	color: #555;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h2 {
	font-family: Arial, sans-serif;
}

input, textarea, select, button {
	font-family: Arial, sans-serif;
}

/* =============================================
 * Layout
 * ============================================= */

:root {
	--pp-content-width: 1200px;
}

#pp-wrap {
	width: var(--pp-content-width);
	margin: 0 auto;
	background: #fff;
	border: 1px solid #bbbbbb;
	border-radius: 8px;
	overflow: hidden;
}

/* =============================================
 * Header
 * ============================================= */

#pp-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-bottom: 2px solid #e0e0e0;
	background: #fff;
}

.pp-header-title {
	font-size: 22px;
	font-weight: bold;
	color: #222;
	margin: 0;
}

.pp-header-logo img {
	height: 40px;
	width: auto;
	display: block;
}

/* =============================================
 * Content
 * ============================================= */

#pp-content {
	padding: 24px;
}

/* =============================================
 * Tabellen
 * ============================================= */

#pp-content tr td {
	padding: 6px;
}

/* =============================================
 * Formular-Elemente
 * ============================================= */

button {
	padding: 1px 5px;
	vertical-align: middle;
	cursor: pointer;
}

select {
	color: #333333;
	font-size: 14px;
	line-height: 24px;
	background: #f9f9f9;
	border: 1px solid #ccc;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1) inset;
}

select[disabled="disabled"] {
	border: 0;
	box-shadow: none;
	background-color: #ffffff;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	height: 30px;
	margin: 0;
	padding: 2px 5px;
	box-sizing: border-box;
}

input[disabled="disabled"] {
	border: 0;
	box-shadow: none;
	background-color: #ffffff;
}

/* =============================================
 * Probentabelle Spaltenbreiten
 * ============================================= */

.nummer {
	width: 40px;
	border: 0;
	text-align: center;
	background: inherit;
}

.bezeichnung { width: 240px; }
.schlag      { width: 250px; }
.gemarkung   { width: 130px; position: relative; }
.nutzung     { width: 130px; }

/* =============================================
 * Preistabelle
 * ============================================= */

#preisinfo .anzahl, .einzelpreis, .gesamtpreis, .textrechts {
	text-align: right;
}

.preisinfoZeile {
	display: none;
}

/* =============================================
 * Hilfsklassen
 * ============================================= */

.schalteraktiv   { background-color: #007A48; }
.schalterinaktiv { background-color: #DDDDDD; }

/* =============================================
 * Überschriften
 * ============================================= */

.entry-title2 {
	color: #000000;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3em;
	margin-bottom: 10px;
}

/* =============================================
 * Tooltip
 * ============================================= */

#artinfo {
	color: #3366FF;
	cursor: help;
	position: relative;
	padding: 0 2px 2px 0;
}

.toolTipWrapper {
	width: 200px;
	position: absolute;
	top: 20px;
	left: -100px;
	display: none;
	color: #000;
	font-weight: normal;
}

.toolTip {
	padding: 8px;
	background-color: #fff;
	border: 1px solid black;
}

/* =============================================
 * Löschen-Button
 * ============================================= */

button.loeschenButton {
	width: 30px;
	height: 30px;
	border: 1px solid #bbb;
	background-color: #ddd;
	background-image: url(/service/probenplaner/img/icon_papierkorb.gif);
	background-position: center;
	background-repeat: no-repeat;
}

/* =============================================
 * Login-Seite
 * ============================================= */

.login-layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 48px;
	align-items: start;
}

/* --- Login-Card (linke Spalte) --- */

.login-card {
	background: #f7f9fc;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 28px 28px 20px;
}

.login-card-title {
	font-size: 18px;
	font-weight: bold;
	color: #222;
	margin: 0 0 20px;
}

.login-form {
	margin: 0;
}

.login-feld {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 16px;
}

.login-label {
	font-size: 13px;
	font-weight: 600;
	color: #444;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.login-pw-link {
	font-size: 12px;
	font-weight: normal;
	color: #378ADD;
}

.login-pw-link:hover {
	text-decoration: underline;
}

.login-input {
	height: 36px;
	padding: 4px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.07) inset;
}

.login-input:focus {
	outline: none;
	border-color: #378ADD;
	box-shadow: 0 0 0 2px rgba(55,138,221,0.15);
}

.login-button {
	display: block;
	width: 100%;
	padding: 10px;
	background: #378ADD;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
	height: auto;
	margin-top: 4px;
}

.login-button:hover {
	background: #185FA5;
}

.login-footer-links {
	font-size: 13px;
	color: #666;
	text-align: center;
	margin: 16px 0 0;
}

.login-footer-links a {
	color: #378ADD;
	font-weight: 600;
}

/* --- Info-Spalte (rechte Spalte) --- */

.login-info {
	padding-top: 8px;
	color: #444;
}

.login-info-title {
	font-size: 17px;
	font-weight: bold;
	color: #222;
	margin: 0 0 12px;
}

.login-info p {
	margin: 0 0 12px;
	line-height: 1.6;
}

.login-info-features {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.login-info-feature {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #f7f9fc;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 12px 14px;
}

.login-info-feature-icon {
	font-size: 18px;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

.login-info-feature-icon--blau  { background: #e6f1fb; color: #185fa5; }
.login-info-feature-icon--gruen { background: #eaf3de; color: #3b6d11; }
.login-info-feature-icon--amber { background: #faeeda; color: #854f0b; }

.login-info-feature div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.login-info-feature strong {
	font-size: 13px;
	font-weight: 600;
	color: #222;
	line-height: 1.4;
}

.login-info-feature span {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
}

.login-info a {
	color: #378ADD;
}

.login-info-neu {
	margin: 16px 0 8px;
}

.login-info-cta {
	display: inline-block;
	background: #3a7d44;
	color: #fff !important;
	padding: 8px 18px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.15s;
}

.login-info-cta:hover {
	background: #2e6436;
	text-decoration: none !important;
}

.login-info-formulare {
	font-size: 12px;
	color: #888;
	margin: 12px 0 0;
	border-top: 1px solid #e8e8e8;
	padding-top: 10px;
}

.login-info-formulare a {
	color: #888;
}


/* =============================================
 * Responsive / Mobile
 * ============================================= */

@media (max-width: 900px) {

	/* Layout */
	body {
		padding: 10px;
	}

	#pp-wrap {
		width: 100%;
		border-radius: 6px;
	}

	/* Header */
	#pp-header {
		padding: 12px 16px;
	}

	.pp-header-title {
		font-size: 17px;
	}

	.pp-header-logo img {
		height: 56px;
	}

	/* Content */
	#pp-content {
		padding: 16px;
	}

	/* Login: 2 Spalten → 1 Spalte */
	.login-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.login-card {
		padding: 20px 16px 16px;
	}

	/* Info-Spalte: auf Mobil unter die Card, etwas kompakter */
	.login-info {
		padding-top: 0;
		border-top: 1px solid #e8e8e8;
		padding-top: 20px;
	}

}

@media (max-width: 480px) {

	/* Header: Logo kleiner, Titel noch kompakter */
	#pp-header {
		padding: 10px 12px;
	}

	.pp-header-title {
		font-size: 15px;
	}

	.pp-header-logo img {
		height: 44px;
	}

	#pp-content {
		padding: 12px;
	}

	/* Login-Button volle Breite */
	.login-button {
		font-size: 14px;
	}

}

@media (max-width: 600px) {

	.login-info-cta {
		display: block;
		text-align: center;
	}

}

/* =============================================
 * Auftrag absenden – Bestätigungsseite
 * ============================================= */

.senden-bestaetigung {
	background: #f0faf0;
	border: 1px solid #b2dfb2;
	border-radius: 8px;
	padding: 28px 32px;
	max-width: 600px;
	margin-bottom: 24px;
}


.senden-bestaetigung p {
	color: #444;
	line-height: 1.6;
	margin: 0 0 20px;
}

.senden-button {
	display: inline-block;
	background: #378ADD;
	color: #fff !important;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}

.senden-button:hover {
	background: #185FA5;
	text-decoration: none !important;
}

.senden-zurueck {
	margin-top: 8px;
	font-size: 13px;
}

.senden-zurueck a {
	color: #888;
}

.senden-zurueck a:hover {
	color: #333;
}