/* mow-outlook.css — matched to outlook.css / burn-outlook.css */

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

  --border: #e7edf4;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
  --bestGlow: 0 0 0 4px rgba(46, 204, 113, 0.18);
}

* { 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;
}

/* Header */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  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;
  gap: 1rem;
}
.brand-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}
.brand-home img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.site-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  opacity: 0.75;
  font-size: 0.92rem;
}
.site-link:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .site-header-inner { padding: 0.5rem 1rem; }
}

/* Card shell */
.card {
  background: var(--card);
  margin: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}
@media (max-width: 480px) {
  .card { padding: 1.25rem; }
}

.page-title {
  margin: 0.25rem 0 0.75rem 0;
  font-size: 1.8rem;
  font-weight: 900;
}

.rules {
  margin: 0 0 0.8rem 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.best-day {
  text-align: left;
  border: 1px solid rgba(46,204,113,0.35);
  background: rgba(46,204,113,0.08);
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  margin: 0.25rem 0 0.9rem 0;
  font-weight: 900;
}
.best-day small {
  display: block;
  font-weight: 650;
  color: #4e5b66;
  margin-top: 0.25rem;
}

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

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

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

/* ZIP box */
.zip-box {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin: 0.25rem 0 1rem 0;
  flex-wrap: wrap;
}
.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: 900;
  cursor: pointer;
}

/* List + day cards */
.outlook-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.day-card {
  text-align: left;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  background: #fff;
}
.day-card.best {
  box-shadow: var(--bestGlow);
  border-color: rgba(46,204,113,0.45);
}

.day-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.day-title {
  font-weight: 950;
  font-size: 1.05rem;
}
.day-reason {
  color: var(--muted);
  font-weight: 750;
  margin-top: 0.15rem;
}

.verdict-pill {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
}
.verdict-pill.yes { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.verdict-pill.no { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.verdict-pill.maybe { background: linear-gradient(135deg, #f39c12, #d35400); }

.metrics {
  display: flex;
  gap: 0.6rem 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
  font-weight: 750;
  color: #44515c;
  font-size: 0.92rem;
}

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

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

/* Hourly table */
.hourly table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.hourly th, .hourly td {
  padding: 0.55rem 0.4rem;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hourly thead th {
  background: rgba(52, 152, 219, 0.10);
  font-weight: 950;
}

.back {
  margin: 1rem 0 0 0;
}
.back a {
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}
.back a:hover {
  text-decoration: underline;
}

.hidden { display: none; }

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