.scroll-container {
    width: 90%;
    max-width: 1366px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding: 16px;
}

.event-card {
    display: inline-block;
    width: 300px;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.event-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.event-info {
    padding: 15px;
}

.event-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.event-date, .event-venue, .event-status {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0;
}

.event-status.upcoming {
    color: green;
}

.event-status.over {
    color: red;
}