#pt-formular-popup {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    padding: 1rem;
    overflow-y: auto;
}

.pt-popup-content {
    background: #fff;
    max-width: 600px;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.pt-popup-close {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.form-step {
    display: none;
}

.form-step[data-step="1"] {
    display: block;
}

.form-step label {
    display: block;
    margin: 0.5em 0;
}

input, select, textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

button.weiter-btn, .form-step button[type="submit"] {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 0.7em 1.2em;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1em;
}

button.weiter-btn:hover, .form-step button[type="submit"]:hover {
    background: #004d99;
}

.zusammenfassung p {
    margin: 0.5em 0;
    padding: 0.25em 0.5em;
    background: #f9f9f9;
    border-left: 4px solid #ccc;
}


.form-step input[type="radio"], .form-step input[type="checkbox"]{
    display: inline-block;
    width: auto;
}