/* GENERAL */
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #f7f7f9;
  color: #333;
}

h1, h2 {
  margin: 0 0 10px;
  font-weight: 600;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-bottom: 1px solid #e5e5e5;
}

.tagline {
  max-width: 600px;
  margin: 10px auto 20px;
  color: #555;
  font-size: 1.1rem;
}

.auth-controls {
  margin-top: 10px;
}

.auth-controls button {
  padding: 10px 16px;
  border: none;
  background: #0077ff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.auth-controls button:hover {
  background: #005fcc;
}

/* MAIN LAYOUT */
.content {
  padding: 40px 20px;
}

.layout {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* MAP CARD */
.map-card {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#map {
  height: 350px;
  border-radius: 10px;
  margin-top: 10px;
}

/* EVENT PANEL */
.panel-card {
  width: 350px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#eventForm input,
#eventForm textarea,
#eventForm select {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

#eventForm button {
  width: 100%;
  padding: 12px;
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#eventForm button:hover {
  background: #005fcc;
}

/* EVENT LIST */
#eventList {
  list-style: none;
  padding: 0;
}

#eventList li {
  background: #f1f4f8;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #666;
}

footer a {
  color: #0077ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}