/* mow.css — matches your CarWashWeather / burn utility layout */

:root {
  --bg: #f5f7fa;
  --card: #ffffff;
  --yes: #2ecc71;
  --no: #e74c3c;
  --text: #2c3e50;
  --muted: #7f8c8d;
  --primary: #3498db;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* ===== shared header (same classes/structure as your other pages) ===== */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e7edf4;
  margin-bottom: 0.35rem;
}

.site-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.site-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-brand span {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-link {
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.75;
  color: var(--primary);
  text-decoration: none;
}

.site-link:hover {
  text-decoration: underline;
  opacity: 1;
}

/* ===== card (same width as your utilities) ===== */

.card {
  background: var(--card);
  margin: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 520px; /* matches your existing utilities */
  width: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

h1 {
  margin: 0 0 0.75rem 0;
  font-size: 1.55rem;
}

/* ===== top row ===== */

.location-label {
  margin: 0.25rem 0 0.25rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.geo-btn {
  border: none;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
  padding: 0.1rem 0.2rem;
}

.updated-at {
  margin: 0 0 0.9rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== zip box ===== */

.zip-box {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.zip-box input {
  width: 180px;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 1rem;
}

.zip-box button {
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* ===== status ===== */

.status {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0.25rem 0 0.75rem 0;
  padding: 1.05rem 1rem;
  border-radius: 12px;
  color: #fff;
}

.status.loading { background: linear-gradient(135deg, #95a5a6, #7f8c8d); }
.status.yes     { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.status.no      { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.status.maybe   { background: linear-gradient(135deg, #f39c12, #d35400); }

.reason {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.35;
}

.best-window {
  margin: 0 0 1rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ===== details ===== */

.details {
  margin-top: 0.5rem;
  padding: 0.9rem;
  background: rgba(52, 152, 219, 0.06);
  border: 1px solid rgba(52, 152, 219, 0.18);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  text-align: left;
}

.hidden { display: none; }

/* ===== hourly ===== */

.hourly-toggle {
  margin-top: 1rem;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.hourly-holder { margin-top: 0.75rem; }

.hourly-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
}

.hourly-table th,
.hourly-table td {
  padding: 0.55rem 0.4rem;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hourly-table thead th {
  background: rgba(52, 152, 219, 0.10);
  font-weight: 900;
}

/* ===== misc ===== */

.muted { color: var(--muted); }

.footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.35;
}

footer {
  margin: 0 0 1.25rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0 1rem;
}

/* ===== responsive (same pattern as your existing css) ===== */

@media (min-width: 768px) {
  .details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .site-brand span {
    font-weight: 700;
    font-size: 0.95rem;
  }
}

.outlook-link {
  margin: 0.25rem 0 0.9rem 0;
  text-align: center;
  font-weight: 800;
}

.outlook-link a {
  color: var(--primary);
  text-decoration: none;
}

.outlook-link a:hover {
  text-decoration: underline;
}

.related-tools {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.related-tools a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.related-tools a:hover {
  text-decoration: underline;
}


