﻿.event-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.event-card img {
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
}

.countdown {
    background-color: var(--primary-color);
    color: white;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.card.event-card .card-body {
    border-top: 1px solid #e0e0e0;
}