/*********************************
 * PFOTENROCKER – MY BOOKINGS STYLE
 *********************************/

/* ==============================
   CONTAINER
   ============================== */
.em-my-bookings-container {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Abstand zwischen Karten */
    margin-top: 20px;
    font-family: 'Coustard', serif !important;
    color: #444; /* Standardfarbe für Inhalt */
}

/* ==============================
   KARTEN
   ============================== */
.em-booking-card {
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ==============================
   HEADER
   ============================== */
.em-booking-header {
    display: block !important;
    margin-bottom: px;
}

/* Eventname bleibt in Systemfarbe */
.em-event-name {
    display: block;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 400 !important;
    color: inherit; /* Systemfarbe */
}

/* ==============================
   DATUM + STATUS BLOCK
   ============================== */
.em-booking-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
}

.em-event-date {
    font-size: 14px;
    font-weight: 400 !important;
    color: #444;
}

.em-event-date::before {
    content: "Wann: ";
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 4px;
    color: #444;
    font-weight: 400;
}

.em-booking-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 400 !important;
    color: #444;
    line-height: 1.5;
}

.em-booking-info p strong {
    font-weight: 400 !important;
    text-transform: uppercase;
    font-size: 14px;
    color: #444;
    margin-right: 6px;
    display: inline-block;
}

/* ==============================
   TICKETS BLOCK
   ============================== */
.em-booking-tickets-wrapper {
    margin-top: 25px;  /* Abstand über Tickets */
    margin-bottom: 0px; /* Abstand unter Tickets */
}

.em-booking-tickets-wrapper h4 {
    margin: 0px; /* kleiner Abstand unter Überschrift */
    font-size: 16px;
    font-weight: 400 !important;
    text-transform: uppercase;
    color: inherit; /* Systemfarbe */
    line-height: 1.4;
	color: #158185;
}

/* Tickets Liste */
.em-booking-tickets {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Einzelne Tickets */
.em-ticket-item {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column; /* Name über Menge/Preis */
    gap: 2px;
}

.em-ticket-item:last-child {
    border-bottom: none;
}

/* Ticketname */
.em-ticket-item strong {
    font-weight: 400 !important;
    text-transform: uppercase;
    font-size: 14px; 
    color: #444;
    display: block;
}

/* Menge & Preis */
.em-ticket-item span,
.em-ticket-item em {
    font-weight: 400 !important;
    font-size: 14px;
	text-transform; uppercase;
    color: #444;
    display: block;
}
