/* Results container width */
.results-container {
  width: 90%;
  margin: auto;
  padding-bottom: 60px;
}

iframe {
  border: none;
  margin: 15px 0;
  background: white;
}

/* Results-specific collapsible width / flex for events */
.events-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1200px;
}

.event-box {
  width: 220px;
  background: #1f1f1f;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
  overflow: hidden;
}
/* Center main content in results page */
body.results-page h1,
body.results-page h2,
body.results-page p {
  text-align: center;
}
/* Results page polish */
.results-container{
  width: min(1200px, 92%);
  margin: 0 auto;
  padding-bottom: 60px;
}

body.results-page h1{
  text-shadow: 0 10px 25px rgba(0,0,0,.45);
}