.vima-event-list {
    max-width: 800px;
    margin: auto;
}

.vima-event-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.vima-event-archive {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.event-card:hover {
    transform: translateY(-3px);
}

.event-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.event-content {
    padding: 20px;
}

.event-content h2 {
    font-size: 20px;
    margin-top: 0;
}

.event-content .button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #014e4e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.vima-event-single {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.event-header {
    margin-bottom: 20px;
}

.event-header h1 {
    font-size: 28px;
    margin: 0;
}

.event-meta {
    color: #666;
    margin-top: 10px;
}

.event-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.event-main-content .event-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.event-sidebar section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.event-sidebar h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.event-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.event-sidebar li {
    margin-bottom: 10px;
}

.event-sidebar a.button {
    display: inline-block;
    background: #014e4e;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.related-events small {
    display: block;
    color: #777;
}

.countdown-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #014e4e;
    text-align: center;
}



.event-count {
    font-size: 0.8em;
    background: #fff;
    color: #014e4e!important;
    padding: 2px 6px;
    border-radius: 999px;
    margin-left: auto;
    display: inline-block;
    font-weight: bold;
}


.vima-tooltip {
    position: absolute;
    z-index: 10000;
    background-color: #222;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    max-width: 250px;
    white-space: normal;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: auto;
}

#vima-calendar table{
    margin-block-end:0;
}

.fc-day.has-event{
    background-color: #014e4e;
    color: white !important;
    padding: 4px 8px;
    font-weight: bold;
}

.vima-tooltip ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vima-tooltip li {
    margin-bottom: 8px;
}

.vima-tooltip a {
    color: #014e4e;
    text-decoration: none;
    font-weight: bold;
}