.ced-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* List View Styles */
.ced-event {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.ced-event h3 {
    margin-top: 0;
    color: #333;
}

.ced-event-image img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

/* Slider Styles */
.ced-event-slider {
    position: relative;
    padding: 20px 0;
}

.ced-event-slide {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    background: #f5f5f5;
}

.ced-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ced-event-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    transition: top 0.3s ease;
    overflow-y: auto;
}

.ced-event-slide:hover .ced-event-overlay {
    top: 0;
}

.ced-event-overlay h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
}

.ced-event-overlay p {
    margin: 5px 0;
    font-size: 0.9em;
}

.ced-event-content {
    margin-top: 10px;
    font-size: 0.85em;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}