@charset "utf-8";
/* CSS Document */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .bg_box-on-tour {
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #99A9CB 0%, cornflowerblue 100%);
            min-height: 100vh;
            padding: 20px;
		}

		.bg_box-at-home {
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #99A9CB 0%, cornflowerblue 100%);
            min-height: 100vh;
            padding: 20px;
		}
        
        .container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .header_box-on-tour {
            background: linear-gradient(135deg, #E8526B, #D4003C);
            color: white;
            padding: 30px;
            text-align: center;
        }

		 .header_box-at-home {
            background: linear-gradient(135deg, #F6AB4D, #EE8360);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .header_box-on-tour h1, .header_box-at-home h1 {
            font-size: 2.2em;
            margin-bottom: 10px;
        }
        
        .header_box-on-tour p, .header_box-on-tour p {
            opacity: 0.9;
            font-size: 1.1em;
        }
        
        .form-container {
            padding: 27px;
        }
        
        .form-group {
            margin-bottom: 13px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #333;
            font-size: 0.95em;
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select {
            width: 100%;
            padding: 6px 8px;
            border: 2px solid #e0e6ed;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        input:focus, select:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .event-details {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            margin-top: 15px;
            display: none;
        }
        
        .event-details.show {
            display: block;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .detail-item {
            display: block;
            padding: 0;
        }
        
        .detail-item:last-child {
            margin-bottom: 0;
        }
        
        .detail-label {
            font-weight: 600;
            color: #495057;
			display: block;
			padding: 0;
        }
        
        .detail-value {
            color: #C5073D;
            font-weight: 500;
			display: block;
			margin-bottom: 7px !important;
        }

		

 .submit-btn_box-on-tour {
            background: linear-gradient(135deg, #E8526B, #D4003C);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        
        .submit-btn_box-at-home {
            background: linear-gradient(135deg, #F6AB4D, #EE8360);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        
        .submit-btn_box-on-tour:hover, .submit-btn_box-at-home:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }
        
        .submit-btn_box-on-tour:active, .submit-btn_box-at-home:active {
            transform: translateY(0);
        }
        
        .message {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

/* Bezahlbereich Styles - zu styles.css hinzufügen */

.payment-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.payment-info p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-label {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    padding-left: 30px;
    color: #495057;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label input:disabled ~ .checkmark {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* Admin-Panel: Bezahlungs-Spalte */
.payment-info {
    font-size: 12px;
    color: #666;
}

.payment-info[data-method="bank_debit"]:before {
    content: "🏦 ";
}

.payment-info[data-method="cash"]:before {
    content: "💵 ";
}

.payment-info[data-method="free"]:before {
    content: "🆓 ";
}

/* Admin-Panel: Zusätzliche Formular-Styles */
.form-hint {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    display: block;
}

/* Responsive Anpassungen für Admin-Tabelle */
@media (max-width: 1200px) {
    .results-container table {
        font-size: 12px;
    }
    
    .payment-info {
        font-size: 11px;
    }
}

/* FOOTER */
		.footer {
			display: block;
			width: 100%;
			text-align: center;
		}
		
		.footer > a {
			text-decoration: none;
			color: #333;
			cursor: pointer;
			transition: all 0.76s ease-in-out;
		}
		
		.footer > a:hover {
			color: #C5073D;
		}
		
		.footer {
			font-size: 0.89rem;
		}
		
		.copy {
			font-size: 0.76rem;
			display: block;
			margin: 7px 0 27px 0;
		}

/* LOGO Anmeldeformulare */

		.split {
			display: flex;
		}
		
		.logo {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			background-image: url('https://s3-eu-west-1.amazonaws.com/files.crsend.com/296000/296960/images/logo---gkmi---4C---original.png');
			background-size: contain;
			background-repeat: no-repeat;
			background-position: 50%;
			min-width: 150px;
			flex-shrink: 0;
		}
		
		.header_text {
			text-align: left;
			padding-left: 10%;
		}