/* tour-widget.css */
.tdm-tour-widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.tdm-tour-widget-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4em;
}

.tdm-tour-widget-list .tdm-date    { flex: 2; }
.tdm-tour-widget-list .tdm-venue   { flex: 3; text-align: right; opacity: 0.8; }
.tdm-tour-widget-list .tdm-tickets { flex: 1; text-align: right; }

/* alternate grey background on every other show, starting with the 2nd item */
.tdm-tour-widget-list li:nth-child(even) {
  background-color: #2e2e2e;
}

/* optional: ensure the first item stays transparent */
.tdm-tour-widget-list li:nth-child(1) {
  background-color: transparent;
}