/* Schritt 4 – Ihre Daten & Teilnehmer */

#eeb-kontakt-form {
    color: #1C1C1C;
}

/* Layout: Label oben, Feld unten */
.eeb-form-row {
    display: flex;
    flex-direction: column !important; /* Erzwingt die vertikale Ausrichtung */
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

/* Labels Styling */
.eeb-form-row label {
    width: 100% !important;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1C1C1C;
    text-align: left;
}

/* Eingabefelder Styling - Maximale Spezifität für Weiß/Schwarz */
.eeb-form-row input[type="text"],
.eeb-form-row input[type="email"],
.eeb-form-row input[type="tel"],
.eeb-form-row select, 
.eeb-form-row textarea,
#joyclub_name, /* Explizit für Profilname */
#strasse,      /* Explizit für Straße */
#comments      /* Explizit für Bemerkungen */ {
    width: 100% !important;
    max-width: 600px;
    padding: 12px;
    border: 1px solid #A57C42 !important; /* Goldener Rand */
    border-radius: 4px;
    background-color: #FFFFFF !important; /* Garantiert Weißer Hintergrund */
    color: #1C1C1C !important;             /* Weiche schwarze Schrift */
    font-size: 1em;
    box-sizing: border-box;
    display: block;
}

/* Fix für das Bemerkungsfeld */
.eeb-form-row textarea {
    min-height: 120px;
    resize: vertical;
}

/* Teilnehmer Tabelle */
table#participants-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #FFFFFF;
}

table#participants-table th {
    background: #1A1A44;
    color: #FFFFFF;
    padding: 12px;
    text-align: left;
}

table#participants-table td {
    padding: 10px;
    border-bottom: 1px solid #F7E7CE;
}

/* Eingabefelder in der Teilnehmer-Tabelle */
table#participants-table input, 
table#participants-table select {
    background-color: #FFFFFF !important;
    color: #1C1C1C !important;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
}

/* Fieldset & Legend */
fieldset {
    border: 1px solid #A57C42;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.4);
}

legend {
    font-weight: bold;
    color: #1A1A44;
    padding: 0 15px;
}

/* Button Styling */
.eeb-btn-small {
    background: #A57C42;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.remove-row {
    background: #800000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
}