.event-liste-wrapper {
    width: 100%;
    margin: 0 auto;
}

.event-liste-zeile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
    gap: 20px;
}

.event-titel {
    flex: 2;
    font-size: 18px;
    font-weight: 300;
    color: #111111;
}

.event-status {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.status-kreis {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.kreis-gruen {
    background-color: #2ecc71;
}

.kreis-orange {
    background-color: #f39c12;
}

.kreis-rot {
    background-color: #e74c3c;
}

.event-button-wrapper {
    flex: 1;
    text-align: right;
}

.liste-anmelde-btn {
    display: inline-block;
    box-sizing: border-box;
    background-color: #ffde6a;
    color: #111111;
    padding: 10px 24px;
    border: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.liste-anmelde-btn:hover {
    background-color: #e5c75f;
}

.btn-ausverkauft,
.btn-ausverkauft:hover {
    background-color: #e74c3c !important;
    color: #ffffff !important;
    cursor: not-allowed;
    pointer-events: none;
}

.event-liste-leer,
.event-fehler {
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 600px) {
    .event-liste-zeile {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .event-button-wrapper,
    .event-status {
        width: 100%;
        text-align: left;
    }

    .liste-anmelde-btn {
        width: 100%;
        text-align: center;
    }
}
