/* Shared styles for the standalone static legal pages (terms.html, privacy.html).
   These pages are fully separate from the Vue map app. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
}

.legal-header {
  border-bottom: 1px solid #eee;
  padding: 16px 24px;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #4caf50;
  text-decoration: none;
}
.legal-brand:hover {
  text-decoration: underline;
}
.legal-brand img {
  height: 24px;
  width: auto;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-draft-banner {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #8a6d00;
  margin-bottom: 32px;
}

h1 {
  font-size: 32px;
  margin: 0 0 8px;
}

.legal-updated {
  color: #888;
  font-size: 14px;
  margin: 0 0 32px;
}

h2 {
  font-size: 20px;
  margin: 32px 0 12px;
}

p,
li {
  font-size: 15px;
  color: #444;
}

ul {
  padding-left: 20px;
}

a {
  color: #4caf50;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.legal-back {
  font-size: 14px;
}
