
.logo {
  padding-right: 0.4em;
}

.action {
  text-transform: none;
  font-size: small;
}

.ticket {
  font-size: 2em;
  text-decoration: none;
}

.lineup {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

.timings {
  text-align: left;
}

.food-and-drink {
  display: flex;
  padding-left: 1em;
  padding-right: 1em;
}

.circle {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border-radius: 50%;
  background: blue;
  font-size: 1em;
  line-height: 1.2em;
  width: 5em;
  height: 5em;
  min-width: 5em;
  min-height: 5em;
  color-scheme: dark;
  color: white;
}

.circle a {
  color-scheme: dark;
  color: white;
}

.pints {
  flex-basis: 1;
  flex-grow: 0;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.food {
  flex-basis: 3;
  flex-grow: 1;
}

.food-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.food-logo {
  width: 162px;
}

.call-to-action {
  margin: 10px;
  border: 2px solid black;
  border-radius: 10px;
  display: inline-block;
}

.past-shows-list-item {
  text-align: left;
}

footer, .visitors-currently {
  font-size: 0.85em;
}

footer {
  /* border: 1px dotted red; */
  background-color: #1e2328;
  padding-bottom: 20px;
  width: 100%;
}

.dark-mode {
  color: white;
  color-scheme: dark;
}

.lighthouse-scores {
  /* border: 1px dotted orange; */
  border-radius: 8px;
  margin-top: 40px;
}

.lighthouse-grid-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.lighthouse-scores-grid {
  /* border: 1px dotted yellow; */
  display: grid;
  grid-template-columns: repeat(4, min-content);
  grid-template-rows: auto auto;
  gap: 1em;
}

.score-container {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Derived from https://css-shape.com/arc/ */
.arc {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  width: 50px;
  aspect-ratio: 1;
  padding: 4px; /* the border thickness */
  box-sizing: border-box;
  border-radius: 50%;
}

/* Style scores based on performance */
.lighthouse-scores .good {
  background-color: green;
}

.lighthouse-scores .ok {
  background-color: orange;
}

.lighthouse-scores .bad {
  background-color: red;
}

.overlay {
  border-radius: 0.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1e2328; /* for lighthouse */
  color: white;
  z-index: 1000;
}

.category-title {
  text-align: center;
}

.analytics-stats-container {
  display: flex;
  justify-content: center; 
  padding-top: 1em;
  padding-bottom: 1em;
}

.analytics-stats {
  display: grid;
  gap: 0 10px;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(2, fit-content(100%));
}

.analytics-stats-key {
  text-align: right;
}

.analytics-stats-value {
  text-align: left;
}




