.ticketwp-elw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ticketwp-elw-link {
    flex: 1;
    min-width: 0; /* This is important for text-overflow to work */
    margin-right: 10px; /* Provide some space between the link and date */
}

.ticketwp-elw-event-name {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.ticketwp-elw-event-date {
    flex-shrink: 0; /* Prevent the date from shrinking */
    white-space: nowrap;
}