.event-widget {
    background: #144270;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
    font-family: system-ui, sans-serif;
}

.event-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
}

.nav-arrow {
    color: #1a56a8;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding: 8px 12px;
    background: #e8f0ff;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

.nav-arrow:hover {
    background: #1a56a8;
    color: white;
    transform: scale(1.1);
}

.nav-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
    background: #f0f0f0;
    color: #999;
}

.event-date {
    color: #333;
}

.event-image img {
    width: 100%;
    display: block;
}

.event-title {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.event-title a {
    color: #ffffff;
    text-decoration: none;
}

.event-title a:hover {
    text-decoration: underline;
}