/* Basislayout voor verticaal 16:9 scherm (niet scrollbaar) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* niet scrollbaar */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050816;
  color: #f9fafb;
}

.screen {
  width: 100%;
  height: 100%;
  padding: 2.5vh 3vw;
  display: flex;
  flex-direction: column;
}

/* Titel bovenaan */

.header {
  text-align: center;
  margin-bottom: 2vh;
}

.header h1 {
  margin: 0 auto 0.6rem auto;
  width: 70%;
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.1;
}

/* Datum en status onderaan */

.footer {
  margin-top: auto;
  padding-top: 1.5vh;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.2rem;
  color: #9ca3af;
}

/* Eventlijst */

.events-container {
  flex: 1;
  margin-top: 2vh;
  margin-bottom: 2vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#events-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4vh;
  overflow: hidden;
}

/* Event-item */

.event-item {
  display: grid;
  grid-template-columns: 18% 9% 1fr;
  column-gap: 0.5rem;
  align-items: center;
  padding: 0.6vh 1vw;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
}

/* Tijd */

.event-time {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: right;
  padding-right: 0.4vw;
}

/* Pijl — ENIGE AANPASSING: 150% groter */
.event-arrow {
  font-size: 3.9rem;  /* 150% tov 2.6rem */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Tekst */

.event-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.event-name {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.15;
}

.event-performer {
  font-size: 1.7rem;
  font-weight: 500;
  color: #e5e7eb;
  line-height: 1.15;
}

.event-location {
  font-size: 1.4rem;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.15;
}

/* Empty / error */

.state-message {
  text-align: center;
  font-size: 1.4rem;
  color: #9ca3af;
  margin-top: 3vh;
}

.hidden {
  display: none;
}
