/* Container für die Liste */
#event-calendar {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Eine einzelne Zeile */
.event-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.event-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Die Datums-Box */
.event-date {
    flex: 0 0 80px;
    height: 80px;
    background: #f0f0f0;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 25px;
    border-bottom: 4px solid #096114; /* Deine Hauptfarbe hier */
}

.event-date.highlight {
    background: #096114;
    color: #fff;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Details in der Mitte */
.event-details {
    flex: 1;
}

.event-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #222;
}

.event-meta {
    font-size: 0.85rem;
    color: #096114;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Button rechts */
.event-action {
    margin-left: 20px;
}

.btn-small {
    padding: 8px 16px;
    background: #096114;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Mobil-Anpassung */
@media (max-width: 768px) {
    .event-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .event-date {
        margin-bottom: 15px;
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 10px;
        justify-content: flex-start;
        gap: 10px;
        border-bottom: none;
        border-left: 4px solid #096114;
    }
    .event-action {
        margin-left: 0;
        margin-top: 15px;
    }
}