
.schaden-form .form-group {
    padding-bottom: 1.0rem;
    width: 100%;
    float: none;
}
.schaden-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}
.schaden-form .form-row .form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}
.schaden-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}
.schaden-form label .required {
    color: #A52336;
    margin-left: 2px;
}
.schaden-form input[type="text"],
.schaden-form input[type="email"],
.schaden-form input[type="tel"],
.schaden-form input[type="date"],
.schaden-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
	-webkit-appearance: none;
}
.schaden-form input[type="text"]:focus,
.schaden-form input[type="email"]:focus,
.schaden-form input[type="tel"]:focus,
.schaden-form input[type="date"]:focus,
.schaden-form textarea:focus {
    border-color: #A52336;
    outline: none;
    box-shadow: 0 0 3px rgba(165, 35, 54, 0.3);
}
.schaden-form textarea {
    min-height: 150px;
    resize: vertical;
}
.schaden-form .anhang-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
}
.schaden-form .anhang-section h3 {
    color: #A52336;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.1em;
}
.schaden-form .anhang-section p.anhang-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}
.schaden-form .anhang-section h4 {
    font-size: 0.95em;
    margin-bottom: 10px;
    color: #333;
}
.schaden-form .file-upload-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.schaden-form .file-upload-row .file-upload-item {
    flex: 1 1 calc(25% - 10px);
    min-width: 160px;
}
.schaden-form .file-upload-item input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px dashed #ccc;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}
.schaden-form .file-upload-item input[type="file"]:hover {
    border-color: #A52336;
}
.schaden-form .btn-submit {
    display: inline-block;
    background: #A52336;
    color: #fff !important;
    border: 1px solid #A52336;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-top: 15px;
}
.schaden-form .btn-submit:hover {
    background: transparent;
    color: #A52336 !important;
}
.schaden-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status-Meldungen */
.schaden-form .form-status {
    display: none;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 0;
    font-size: 15px;
}
.schaden-form .form-status.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}
.schaden-form .form-status.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
.schaden-form .field-error {
    border-color: #A52336 !important;
}
.schaden-form .error-text {
    color: #A52336;
    font-size: 12px;
    margin-top: 3px;
}

/* Spinner */
.schaden-form .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s ease infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Datenschutz */
.schaden-form .datenschutz-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.schaden-form .datenschutz-check input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #A52336;
}
.schaden-form .datenschutz-check label {
    font-weight: 400;
    font-size: 14px;
}
.schaden-form .datenschutz-check label a {
    color: #A52336;
}

.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: not-allowed;
}
.loading-content {
	text-align: center;
	color: #fff;
	font-family: inherit;
}
.loading-content p {
	margin: 15px 0 0 0;
	font-size: 1.2em;
	font-weight: 600;
}
.loading-content .loading-sub {
	font-size: 0.9em;
	font-weight: 400;
	opacity: 0.8;
	margin-top: 8px;
}
.loading-spinner {
	width: 60px;
	height: 60px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top: 5px solid #fff;
	border-radius: 50%;
	margin: 0 auto;
	animation: overlaySpinRotate 1s linear infinite;
}
@keyframes overlaySpinRotate {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 575px) {
    .schaden-form .form-row .form-group {
        flex: 1 1 100%;
    }
    .schaden-form .file-upload-row .file-upload-item {
        flex: 1 1 100%;
    }
}