/* Styles für das Lead-Formular */
#leadForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.step {
    margin-bottom: 20px;
}

.step p {
    margin-bottom: 10px; /* Standardmäßiger Abstand für alle Fragen */
}

.radio-group {
    margin-bottom: 20px; /* Größerer Abstand nach den Radiobuttons */
}

.checkbox-group, .radio-group {
    margin-top: 10px;
}

/* Kontrollkästchengröße und Radiobutton-Größe anpassen */
input[type="checkbox"], input[type="radio"] {
    transform: scale(2.4); /* Kontrollkästchen um das 2-fache vergrößern */
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 20px; /* Verschiebt die Checkboxen und Radiobuttons nach rechts */
}

/* Beschriftung */
label {
    margin-right: 10px;
    font-size: 1.2em; /* Optional: Größere Schrift für bessere Lesbarkeit */
}

/* Button Styling */
.btn {
    display: block;
    width: 100%; /* Button nimmt die gesamte Breite ein */
    padding: 15px 20px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 30px; /* Abstand nach oben vergrößert */
    text-align: center;
    font-size: 1.2em; /* Optional: Größere Schrift */
}

.btn:hover {
    background-color: #005bb5;
}

p {
    font-weight: bold;
    font-size: 1.1em;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#leadForm input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="date"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Styles für die Fortschrittsanzeige */
#progressBar {
    text-align: center; /* Zentriert den Text */
    margin-top: 20px; /* Fügt etwas Abstand zum Formular hinzu */
}

#stepIndicator {
    font-weight: bold;
    font-size: 1.2em;
}

/* Fortschrittscontainer */
#progressContainer {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 10px;
    height: 10px;
    margin-top: 20px;
}

/* Fortschrittsbalken */
#progress {
    height: 100%;
    width: 0;
    background-color: #4caf50;
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Modal-Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 600px; 
    text-align: center;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.modal-content h2 {
    font-size: 24px;
    color: #0073e6;
}

.modal-content p {
    font-size: 16px;
    color: #333;
}

.modal-content .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
