html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7dd;
}

#map { height: 100vh; width: 100vw; }

.fab {
  position: fixed;
  right: 18px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 1000;
  background: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
#addBtn { bottom: 18px; width: 62px; height: 62px; background: #ffcc33; font-size: 34px; }
#gpsBtn { bottom: 98px; }
#homeBtn { bottom: 178px; }

.infoBox {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1002;
  background: rgba(255,255,255,0.95);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  max-width: calc(100% - 140px);
  font-size: 13px;
}

footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  background: rgba(255,255,255,0.9);
  padding: 6px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}
footer span { display: block; }

/* Fullscreen form modal */
#formModal {
  display: none; /* hidden until triggered */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,247,221,0.98);
  z-index: 2000;
  padding: 20px;
  overflow: auto;
}

#stallForm {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
#stallForm h2 { margin-top: 0; color: #c77600; }
#stallForm label { display: block; margin: 10px 0 4px; font-size: 14px; }
#stallForm input, #stallForm textarea, #stallForm select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.checkboxes label { font-size: 14px; }

.formActions {
  display: flex;
  gap: 10px;
}
.formActions .primary {
  background: #ffcc33; border: none; padding: 10px 16px;
  border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: bold;
}
.formActions .primary:hover { background: #ffd84f; }

.formActions .secondary {
  background: #eee; border: none; padding: 10px 16px;
  border-radius: 6px; cursor: pointer; font-size: 14px;
}
.formActions .secondary:hover { background: #e2e2e2; }