:root {
  --bg:#f7f7f8;
  --card:#fff;
  --muted:#6b7280;
  --primary:#0ea5e9;
  --border:#e5e7eb;
}

html, body { height: 100%; margin:0; }
body { background:var(--bg); font-family:system-ui; color:#111827; }

.wrap { 
  display:grid; 
  grid-template-columns:1fr; 
  gap:12px; 
  padding:12px; 
  box-sizing:border-box;
}

/* Desktop */
@media(min-width:960px){
  .wrap { 
    grid-template-columns:420px 1fr; 
    height:100vh; 
  }
  .map-card { 
    display:flex; 
    flex-direction:column; 
    height:100%;
  }
}

/* Ühtne, korrektne kaardi konteineri reegel */
#map {
  width:100%;
  height:100%;
  min-height:500px; /* kindlus, et EI kuku kokku */
  border:1px solid var(--border);
  border-radius:14px;
  box-sizing:border-box;
}

.card { 
  background:var(--card); 
  border:1px solid var(--border); 
  border-radius:14px; 
}

.p { padding:14px; }

.muted{color:var(--muted);font-size:12px}

.list {
  overflow:auto;
  max-height:70vh;
  padding-right:6px;
}

.item {
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  margin-bottom:8px;
}

.btn { cursor:pointer; }

.btn.primary {
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

/* Otsingukast */
.search-box {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
}

/* Mobiil */
@media(max-width: 959px) {
  .list {
    display: none !important;
  }
  
  .wrap {
    grid-template-columns: 1fr !important;
    height: auto;
  }

  .map-card {
    height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
  }

  #map {
    height: 100% !important;
    min-height: 400px;
  }
}

.footer {
  text-align:center;
  color:var(--muted);
  font-size:12px;
  margin-top:10px;
}
