.aneb-booking-box {
    margin-top: 30px;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fafafa;
}

.aneb-booking-box h3 {
    margin-top: 0;
}

.aneb-booking-box form.cart {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.aneb-booking-box input[type="number"] {
    width: 90px;
    padding: 8px;
}

.aneb-book-button {
    cursor: pointer;
}

.aneb-sold-out {
    color: #b00020;
    font-weight: 600;
}

.aneb-upcoming-wrap {
    margin: 30px 0;
}

.aneb-upcoming-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.aneb-upcoming-toolbar h2 {
    margin: 0;
}

.aneb-view-toggle {
    display: inline-flex;
    gap: 8px;
}

.aneb-view-toggle button {
    border: 1px solid #d0d0d0;
    background: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
}

.aneb-view-toggle button.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.aneb-upcoming-events.aneb-view-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.aneb-upcoming-events.aneb-view-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aneb-event-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.aneb-event-card-inner {
    padding: 18px;
}

.aneb-event-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.aneb-view-list .aneb-event-card {
    display: grid;
    grid-template-columns: 220px 1fr;
}

.aneb-view-list .aneb-event-image img {
    height: 100%;
    min-height: 180px;
}

.aneb-event-card h3 {
    margin: 0 0 10px;
}

.aneb-event-card h3 a {
    text-decoration: none;
}

.aneb-event-meta {
    margin: 0 0 12px;
    color: #555;
    line-height: 1.6;
}

.aneb-event-excerpt {
    margin-bottom: 16px;
}

.aneb-event-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.aneb-event-actions .button {
    display: inline-block;
    text-decoration: none;
}

.aneb-no-events {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fafafa;
}

@media (max-width: 700px) {
    .aneb-view-list .aneb-event-card {
        display: block;
    }
}
