/* Schritt 1 – Elysium Event Buchungen Layoutanpassungen */

/* 1. Labels und Überschriften */
.eeb-label-row { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 8px; 
}

.eeb-ueberschrift-label { 
    font-weight: 700; 
    color: #1A1A44; /* Dunkelblau */
}

/* 2. Auswahlbox (Select) */
.eeb-select-wrapper { 
    margin-top: 6px; 
    margin-bottom: 16px; 
}

.eeb-select-wrapper select#eventauswahl { 
    width: 100%; 
    max-width: 800px; 
    padding: 10px; 
    border: 1px solid #A57C42; /* Goldener Rand */
    border-radius: 6px; 
    background-color: #FFFFFF;
    color: #1C1C1C; /* Weich Schwarz */
    font-size: 1em;
}

/* 3. Event-Details Box */
.eeb-event-details {
    background-color: #FFFFFF;
    color: #1C1C1C; /* Weich Schwarz für allgemeinen Text */
    border-left: 4px solid #A57C42; /* Gold Akzent */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Labels innerhalb der Details (z.B. "EventCode:") */
.eeb-event-details label {
    color: #1C1C1C;
    font-weight: bold;
}

/* Das schreibgeschützte Input-Feld für den Eventcode */
.eeb-inline input#eventcode {
    border: none;
    padding: 5px;
    background-color: #f9f9f9;
    color: #1C1C1C; /* Weich Schwarz */
    font-weight: bold;
    width: auto;
}

/* Beschreibungstext (falls via PHP ausgegeben) */
#event-description-display {
    color: #1C1C1C;
}

/* 4. Buttons */
.eeb-refresh-btn { 
    background-color: #1A1A44; 
    color: #FFFFFF; 
    padding: 8px 12px; 
    font-size: .95em; 
    font-weight: 700; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: background-color .2s ease, transform .05s ease; 
    white-space: nowrap; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
}

.eeb-refresh-btn:hover { 
    background-color: #A57C42; 
}

.eeb-navigation .eeb-btn-primary { 
    background-color: #1A1A44; 
    color: #FFFFFF; 
    padding: 12px 24px; 
    font-size: 1.1em; 
    font-weight: 700; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
}

.eeb-navigation .eeb-btn-primary:hover { 
    background-color: #A57C42; 
}