body {
  font-family: "Inter", sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 16px;
  background-color: #e5e5e5;
}

h1 {
  text-align: center;
}

.item {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.trail-name {
  font-weight: bold;
  font-size: 1.2rem;
}

.usage {
  color: #444;
  margin-top: 4px;
  font-size: 0.95rem;
}

.stat-line {
  font-size: 0.9rem;
  margin-top: 4px;
}

/* NAVBAR */

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  margin-bottom: 30px;
}

.nav-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
}

.nav-links a {
  margin-left: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}
.nav-auth {
  display: flex;
  gap: 10px;
}

.nav-btn {
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  font-family: inherit;
}

.nav-btn:hover {
  background: #f0f0f0;
}
