.infoInline.hidden {
	display: none;
}

.inputRevier {
	width: 50px;
	height: 25px;
	text-align: center;
}

.overlayLineWrapper {
	display: flex;
	gap: 7px;
	margin: 6px 0;
	align-items: baseline;
}

.addRevierZeile {
	margin-top: 5px;
	display: inline-block;
	width: 100%;
	top: 0px;
	right: 0px;
}

#addRevierName {
	width: 100%;
	margin-right: 4px;
}

#id_kunde {
	width: 245px;
}

#id_datum {
	width: 130px;
}

#id_reinigungsBeginn {
	width: 134px;
}

#id_kontrollrhythmus {
	width: 134px;
}

#id_uhrzeitBeginn {
	width: 90px;
}

#id_uhrzeitEnde {
	width: 87px;
}

#id_reinigungsEnde {
	width: 134px;
}

#id_objekt_kraefte {
	height: 80px;
}

.radio-group {
	display: flex;
	gap: 15px;
}

.radio-group label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

#id_reinigungszeitTyp {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

#reinigungszeit-felder {
	display: flex;
	gap: 8px;
}

.notizen-text {
	color: #212529;
}

/* Datei-Input ausblenden wenn Drop-Zone vorhanden */
.drop-zone-hidden {
	display: none;
}

/* Drag-and-Drop Zone */
.drop-zone {
	border: 2px dashed #b0b0b0;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.25s, background-color 0.25s;
	margin-top: 8px;
	background-color: #fafafa;
	width: 100%;
}

.drop-zone:hover {
	border-color: #888;
	background-color: #f0f0f0;
}

.drop-zone.dragover {
	border-color: #4a90d9;
	background-color: #e8f0fe;
}

.drop-zone-icon {
	font-size: 28px;
	color: #999;
	margin-bottom: 4px;
}

.drop-zone-text {
	font-size: 13px;
	color: #777;
}

.drop-zone-file-list {
	margin-top: 10px;
	font-size: 12px;
	color: #333;
	text-align: left;
}

.drop-zone-file-list div {
	padding: 3px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 6px;
}

.drop-zone-file-list div:last-child {
	border-bottom: none;
}

.drop-zone-file-remove {
	cursor: pointer;
	color: #c0392b;
	font-weight: bold;
	font-size: 14px;
	margin-left: auto;
}

/* Auto-resize Textarea */
.auto-resize-textarea {
	width: 100%;
	min-height: 60px;
	resize: vertical;
	overflow-y: hidden;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.4;
	padding: 6px 8px;
}