/* Month Titles */
.ncp-month {
    font-size: 26px;
    font-weight: bold;
    margin: 30px 0 10px;
    text-transform: uppercase;
}


/* Event Item */
.ncp-event-item {
    padding: 15px 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ncp-event-date {
    font-weight: bold;
    font-size: 16px;
}

.ncp-ticket-btn {
    background: #e6c77b;
    color: black;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 0px;
    font-weight: normal;
    display: inline-block;
    width: fit-content;
    margin-top: 5px;
	font-size: 14px;
}

/* Fade in new events */
.fade-in {
    animation: fadeIn 0.4s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Compact filter selects */
#ncp-filters {
    display: flex;
    gap: 10px;
    margin: 15px 0 20px 0;
    align-items: center;
}

#ncp-filters select {
    width: auto;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #242424;
    border-radius: 0px;
    background: transparent;
    height: 36px;
    cursor: pointer;
    max-width: 140px; /* prevent being too wide */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


