/* Reset-ish */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f4f4f4;
  color: #222;
}

/* Header */
.app-header {
  background: #000000;
  color: white;
  padding: 1rem;
}

.app-header h1 {
  margin: 0;
  font-size: 1.2rem;
}

/* Content */
main {
  padding: 0.5rem;
}

/* Lijsten als “cards” */
.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-item {
  background: white;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-item:hover {
  background: #f0f0f0;
}

.list-item::after {
  content: "›";
  color: #888;
}

.list-item span {
  margin-right: 0.5rem;
}

/* home-button */
.app-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#home-btn {
  cursor: pointer;
  font-size: 1.2rem;
}

#home-btn:hover {
  opacity: 0.8;
}

/* location detailpagina */
.location {
  background: white;
  padding: 1rem;
  border-radius: 8px;
}

.location + .location {
  margin-top: 1rem;
}

.location-photo img {
  width: 100%;
  border-radius: 6px;
}


/* backbutton */
#back-btn {
  cursor: pointer;
  font-size: 1.2rem;
}

#back-btn.hidden {
  visibility: hidden;
}

/* kaart bij location */
.location-map {
  height: 200px;
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

/* omschrijving bij location */
.location-description {
  margin: 1.0rem 0;
  line-height: 1.4;
  color: #8a8686;
}


#home-btn {
  display: inline-flex;
  align-items: center;
  color: currentColor;
}
#home-btn svg {
  opacity: 0.85;
}
