body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.progress-bar-container {
    width: 100%;
    background-color: #eee;
}

.progress-bar {
    height: 20px;
    background-color: #4CAF50;
    text-align: center;
    color: white;
    line-height: 20px;
    border-radius: 10px;
}

.form-step {
    display: none;
    margin-top: 20px;
}

.form-step.active {
    display: block;
}

.option-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    text-align: left;
}

.option-image {
    margin-right: 10px;
    width: 50px; /* Setzen Sie die gewünschte Breite des Bildes */
    height: auto; /* Damit das Bild proportional bleibt */
}

.option-text {
    flex-grow: 1;
}


/* Ersetzen Sie diese Stile durch die tatsächlichen Bilder */
.option-button[data-roof="saddle"] {
    background: url('') no-repeat center;
}
/* Wiederholen Sie dies für jede Option mit entsprechenden Bildern */
/* Füge diese Klassen am Ende deiner CSS-Datei hinzu */
.fade-out {
    animation: fadeOut 0.5s forwards; /* Animation für das Ausblenden */
}

.fade-in {
    animation: fadeIn 0.5s forwards; /* Animation für das Einblenden */
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.form-step input, .form-step textarea {
  width: 80%;
  padding: 10px;
  margin: 10px auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-step textarea {
    height: 100px;
}

#submitForm {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submitForm:hover {
    background-color: #45a049;
}
