/* Event Card Styles */
.event-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.event-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.3;
}

.event-date-badge {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
}

.event-date-badge .date-text {
    font-weight: 600;
    font-size: 1rem;
    color: #0c5460;
}

.event-status {
    background: #e3fcef;
    color: #00a854;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.event-status.pending {
    background: #fff7e6;
    color: #fa8c16;
}

.event-status.completed {
    background: #f6ffed;
    color: #52c41a;
}

.event-status.cancelled {
    background: #fff1f0;
    color: #f5222d;
}