/* Main Layout and Typography */
body {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #F1EFE9;
  color: #333;
}

@media (min-width: 640px) {
  body {
    padding: 24px;
  }
}

h2 {
  margin-bottom: 10px;
}

/* Legend */
.legend {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-color {
  width: 30px;
  height: 8px;
  border-radius: 4px;
}

.fast { background: #34a853; }
.medium { background: #fbbc04; }
.slow { background: #ea4335; }

/* Jamie Logo */
a.jamie-logo svg {
  max-width: 200px;
}

/* Admin Control Bar */
.admin-control-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #E28B4B;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border-bottom: 2px solid #000;
}

.admin-control-bar a {
  color: white;
  text-decoration: underline;
  margin-left: 15px;
}

body.admin-logged-in {
  padding-top: 45px;
}
