.option-cards {
  display: flex;
  gap: 16px;
  margin: 12px 0 24px;
}
.option-card {
  flex: 1;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.option-card:hover { border-color: #9ca3af; }
.option-card.active { border-color: #2563eb; background: #eef2ff; }
.option-title { font-weight: 600; margin-bottom: 6px; }
.option-desc { color: #6b7280; font-size: 0.95rem; }
.vwa-event-form {
    /* max-width: 600px; */
    /* margin: 2rem auto;
    padding: 2rem; */
    /* background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.vwa-event-form h2 {
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1rem;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E0E7F0;
    border-radius: 32px;
    padding: 4px;
    width: 600px;
    max-width: 100%;
    margin: 2rem auto 2rem auto;
    position: relative;
}

.tabs button {
    flex: 1;
    padding: 12px 0;
    border: none;
    background: transparent;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 28px;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}

.tabs button.active {
    color: #fff;
}

.tabs .tab-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 8px);
    background: #2979ff;
    border-radius: 28px;
    transition: left 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 0;
}

.tabs .tab-slider.right {
    left: calc(50% + 4px);
}

form>div {
    margin-bottom: 1rem;
}

input,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-family: inherit;
}

textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.4;
}

input.invalid,
textarea.invalid {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 0.25rem;
}

.success-message {
    color: #28a745;
    font-size: 1rem;
    margin-top: 1rem;
}

.success-message-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #E0E7F0;
    border-radius: 24px;
    padding: 3rem 2rem 2rem 2rem;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    background: #eafbe7;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(40,167,69,0.08);
}

.success-message-large h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    text-align: center;
}

.success-message-large p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
    text-align: center;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* .success-actions .btn-primary {
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background: #2979ff;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(41,121,255,0.08);
    transition: background 0.2s;
}

.success-actions .btn-primary:hover {
    background: #1b7ef4;
}

.success-actions .btn-secondary {
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background: #e0e7f0;
    color: #2979ff;
    border: none;
    box-shadow: 0 2px 8px rgba(41,121,255,0.08);
    transition: background 0.2s, color 0.2s;
}

.success-actions .btn-secondary:hover {
    background: #d1dbe8;
    color: #1b7ef4;
} */

button[type=\"submit\"] {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
}

button[type=\"submit\"]:hover {
    background: #1b7ef4;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Stepper/Wizard Steps */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2rem;
    gap: 0;
    padding: 0 0.5rem;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 0;
}

.wizard-step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E0E7F0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    border: 2px solid #e9ecef;
    transition: background 0.2s, color 0.2s, border 0.2s;
    z-index: 1;
    padding-top: 5px;
}

.wizard-step .circle.active {
    background: #2979ff;
    color: #fff;
    border-color: #2979ff;
}

.wizard-step .circle.done {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.wizard-step .label {
    margin-top: 0.5rem;
    font-size: 12px;
    color: #222;
    text-align: center;
    min-width: 0;
    word-break: break-word;
}

.wizard-step .line {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
    transform: translateX(20px);
}

.wizard-step:not(:last-child) .line {
    display: block;
}

.wizard-step:last-child .line {
    display: none;
}

/* Formularfelder */
.vwa-event-form input,
.vwa-event-form select,
.vwa-event-form textarea {
    background: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.vwa-event-form input:focus,
.vwa-event-form select:focus,
.vwa-event-form textarea:focus {
    border-color: #2979ff;
    outline: none;
}

.vwa-event-form textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.4;
}

.vwa-event-form textarea.invalid {
    border-color: #dc3545;
}

.vwa-event-form label {
    font-weight: 500;
    color: #222;
    margin-bottom: 0.1rem;
    font-size: 12px;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.wizard-nav button {
    min-width: 120px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.wizard-nav button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Übersicht (Zusammenfassung) */
.vwa-event-form pre {
    background: #f5f6fa;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    color: #222;
    overflow-x: auto;
}

/* Seitenboxen (z.B. Seminarinfos, Ansprechpartner) */
.event-details,
.sidebox {
    background: #f5f6fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #222;
}

/* Headings */
.vwa-event-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.vwa-event-form h4 {
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}

/* Zusammenfassung Tabelle */
.summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    background: none;
    margin-bottom: 2rem;
}

.summary-table th {
    text-align: left;
    font-weight: 600;
    color: #222;
    padding: 0.5rem 1rem 0.5rem 0;
    background: none;
    border: none;
    min-width: 120px;
}

.summary-table td {
    background: #f5f6fa;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    color: #222;
    border: none;
}

/* Button Styles */
.btn-primary,
button.btn-primary,
a.btn-primary {
    background: #2979ff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover {
    background: #1b7ef4;    
}

.btn-primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary,
button.btn-secondary,
a.btn-secondary {
    background: #E0E7F0;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
    font-weight: 500;
    border: none;
}

.btn-secondary:hover,
button.btn-secondary:hover,
a.btn-secondary:hover {
    background: #d5dbe4;
}

.btn-secondary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-col-50 {
    flex: 1 1 0;
    min-width: 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.form-col-100 {
    flex: 1 1 100%;
    max-width: 100%;
}

.styled-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #f5f6fa;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Styling für die restlichen Optionen */
.styled-select option:not([value=""]) {
    color: #000;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 40px;
}

.radio-group label {
    font-weight: 400;
    color: #222;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.radio-group input[type="radio"] {
    accent-color: #2979ff;
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-col-50,
    .form-col-100 {
        max-width: 100%;
    }
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.checkbox-wrapper label {
    cursor: pointer;
    margin: 0;
}

.form-row small {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 5px 0;
}

.accordion-header {
    padding: 10px;
    background-color: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

.accordion-icon {
    font-size: 12px;
    color: #666;
}

.accordion-content {
    padding: 10px;
    background-color: #fff;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table th,
.details-table td {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.details-table th {
    width: 30%;
    color: #666;
}

.voucher-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.voucher-input-group input {
    flex: 1;
}

.voucher-input-group button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.voucher-input-group .clear-button {
    background: #dc3545;
    color: white;
}

.voucher-info {
    margin-top: 0.5rem;
    font-size: 12px;
}

.voucher-info.error {
    color: #dc3545;
}

.voucher-info .success {
    color: #28A745;
}

.costs-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.costs-summary h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.costs-summary .total-row,
.summary-table .total-row {
    font-weight: bold;
    border-top: 2px solid #222;
}

.costs-summary .total-row th,
.costs-summary .total-row td,
.summary-table .total-row th,
.summary-table .total-row td {
    font-size: 1.1em;
    color: #2979FF;
}

/* Spacing für Entfernen-Button bei Teilnehmern */
.remove-participant-btn {
    margin-bottom: 2rem !important;
}

/* Platzanzeige für Stuttgart-Seminare */
.seats-info {
    border-left: 4px solid #2979ff;
    font-size: 0.95rem;
}

.seats-info strong {
    color: #1565c0;
}

/* Wartelisten-Anzeige */
.waitlist-info {
    border-left: 4px solid #2196f3;
    font-size: 0.95rem;
    background-color: #e3f2fd !important;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.waitlist-info strong {
    color: #1565c0;
}

/* Registration Blocked Message */
.registration-blocked-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #ffeaea;
    border: 2px solid #dc3545;
    border-radius: 24px;
    padding: 3rem 2rem 2rem 2rem;
    width: 100%;
}

.blocked-icon {
    font-size: 4rem;
    color: #dc3545;
    background: #ffeaea;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.registration-blocked-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    text-align: center;
}

.registration-blocked-message p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
    text-align: center;
}

.blocked-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Radio Button Styles für Teilnahmeart */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group.invalid {
    border: 2px solid #e74c3c;
    border-radius: 4px;
    padding: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    font-size: 14px;
}

.radio-label input[type="radio"] {
    margin: 0;
    width: auto;
}

.radio-label span {
    margin: 0;
}

.participant-participation-type {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.participant-participation-type:last-child {
    border-bottom: none;
}

.participant-label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Sternchentext unter dem Formular */
.form-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    text-align: left;
}