/* WP Live Appearances – Frontend Styles */

.wpla-wrapper {
  margin: 1.5em 0;
}

.wpla-fallback {
  font-size: 1.1em;
  font-style: italic;
  text-align: center;
  padding: 2em 1em;
}

/* Each event: 2-column table */
.wpla-event {
  width: 100%;
  border-collapse: collapse;
  border: none;
  table-layout: fixed;
}

.wpla-event tr,
.wpla-event td {
  border: none;
}

/* Left column: event details */
.wpla-event-details {
  padding: 40px;
  vertical-align: middle;
  text-align: left;
}

/* Right column: ticket button */
.wpla-event-ticket {
  padding: 40px 80px 40px 0;
  vertical-align: middle;
  text-align: center;
  width: 220px;
}

/* Line 1: Date */
.wpla-date {
  font-size: 0.95em;
  margin-bottom: 0.2em;
  line-height: 1.3;
}

/* Line 2: Event title */
.wpla-event-title {
  font-size: 1.6em;
  font-weight: 700;
  margin: 0 0 0.1em;
  line-height: 1.2;
}

/* Line 3: Venue + City/State on same line */
.wpla-venue-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
}

.wpla-venue-name {
  font-size: 1.15em;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.wpla-venue-name a {
  text-decoration: none;
  color: inherit;
}

.wpla-venue-name a:hover {
  text-decoration: underline;
}

.wpla-city-state {
  font-size: 1em;
  line-height: 1.3;
}

/* Ticket buttons */
.wpla-btn,
a.wpla-btn,
a.wpla-btn:link,
span.wpla-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 1.15em;
  font-weight: 700;
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  border: none;
  cursor: default;
  line-height: 1.2;
  box-sizing: border-box;
  font-family: inherit;
}

a.wpla-btn--tickets,
a.wpla-btn--tickets:link,
a.wpla-btn--tickets:visited {
  background: #0073aa !important;
  color: #fff !important;
  cursor: pointer;
  text-decoration: none !important;
}

a.wpla-btn--tickets:hover,
a.wpla-btn--tickets:active {
  background: #005a87 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.wpla-btn--sold-out {
  background: #999 !important;
  color: #fff !important;
}

.wpla-btn--coming-soon {
  background: transparent;
  border: 2px solid #999;
  color: #666;
}

/* Responsive stacked layout */
@media screen and (max-width: 600px) {
  .wpla-event,
  .wpla-event tr,
  .wpla-event td {
    display: block;
    width: 100% !important;
  }

  .wpla-event-details {
    padding: 24px 24px 12px;
  }

  .wpla-event-ticket {
    padding: 0 24px 24px;
    text-align: left;
  }

  .wpla-venue-line {
    flex-direction: column;
    gap: 0.15em;
  }

  .wpla-event-title {
    font-size: 1.3em;
  }
}
