.event-card {
    max-width: 350px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: auto;
}

.event-info {
    padding: 20px;
}

.event-details h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.event-details p {
    margin: 0 0 10px;
    font-size: 1rem;
}

/* Event Call to Action (CTA) */
.event-cta {
    text-align: center;
    margin-top: 15px;
}

.event-button {
    background-color: #0073aa;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Custom CTA Button */
.custom-cta-button {
    font-family: "Sono", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: #000000;
    background-color: #61CE7000;
    border: 1px solid #000000;
    border-radius: 33px;
    padding: 12px 31px;
    text-decoration: none;
    display: inline-block;
}

.custom-cta-button:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.event-tooltip h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

/* FullCalendar Event Styling */
.fc-event {
    background-color: #0073aa;
    border-color: #0073aa;
    color: white;
    padding: 5px;
    font-size: 14px;
}



.event-tooltip {
    position: absolute;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    white-space: nowrap;
    max-width: 300px;
    /* Adjust the tooltip width as necessary */
}

.event-tooltip h4 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.event-tooltip p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.event-tooltip img {
    max-width: 100%;
    border-radius: 5px;
}