/* event-swiper.css */

.event-swiper {
    position: relative;
    overflow: hidden;
    width: 300px;
    margin: 0 auto;
}

.event {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    display: none;
}

.event-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.days-until {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
}

.view-event-button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
}

/* Display the first event initially */
.event:first-child {
    display: block;
}
