#sl-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px;
  z-index: 1000;
  font-family: "Times New Roman", Times, serif;
  color: #bdbdbd;
}

.concert-event {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  /*background-color: #1e1e1e;*/
  padding: 15px 20px;
  /*border-radius: 10px;*/
  border: 1px solid #333;
  margin-bottom: 6px;
}

.event-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 5px;
}

.event-date {
  font-size: 1.2em;
  font-weight: bold;
  /*color: #68b5f8;*/
}

.event-city {
  font-size: 1em;
  /*color: #bdbdbd;*/
}

.event-headliner {
  font-size: 0.9em;
  /*color: #757575;*/
}

.event-ticket {
  display: flex;
  align-items: center;
}

.ticket-button {
  /*text-decoration: none;*/
  /*background-color: #68b5f8;*/
  /*color: #121212;*/
  /*font-weight: bold;*/
  /*padding: 10px 20px;*/
  /*border-radius: 1px;*/
  /*transition: background-color 0.3s ease;*/
}

.ticket-button:hover {
  /*background-color: #4788c2;*/
  /*color: #121212;*/
}

