/* ============================================================
   COMPONENT: Termine (Desktop-Basis)
   ============================================================ */

.event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* Einzelner Termin */
.event-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    background: #f8f9fb;
    border-radius: 10px;
    border: 1px solid #e2e6ee;
    transition: background 0.2s ease;
}

.event-item:hover {
    background: #eef3fa;
}

/* Datum-Badge */
.event-date {
    min-width: 70px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #dce7f7;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    color: #2a4a7b;
    border: 1px solid #c7d6ec;
}

/* Text */
.event-text {
    flex: 1;
    font-size: 14px;
    color: #2b2b2b;
    line-height: 1.35;
}

/* Warnung */
.event-warning {
    background: #ffe5e5;
    border: 1px solid #ffb3b3;
    color: #b30000;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

/* Abgesagte Termine */
.event-cancelled {
    color: #ff4d4d;
    font-weight: bold;
}

.event-item.event-cancelled {
    background: #ffe5e5;
    border: 1px solid #ffb3b3;
}

.event-item.event-cancelled .event-date,
.event-item.event-cancelled .event-text {
    color: #b30000;
}

.termin-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
}

.event-cancel-text {
    color: #cc0000;
    font-weight: bold;
    margin-left: 6px;
}