
#map-wrapper {
  display: flex;
  flex-direction: row;
  height: 80vh;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
#sidebar {
  width: 30%;
  max-width: 400px;
  overflow-y: auto;
  padding: 1rem;
  background-color: #f9f9f9;
  border-right: 1px solid #ddd;
}
#map {
  flex: 1;
  height: 100%;
}
.firm-item {
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0;
}
.firm-item strong {
  font-size: 1rem;
  display: block;
}
.firm-item a {
  color: #2563eb;
  text-decoration: underline;
}
.ekomap-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 0;
}
.ekomap-controls input,
.ekomap-controls select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-width: 200px;
  flex: 1;
}
.apply-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #sidebar {
    display: none !important;
  }
  .apply-btn {
    order: -1;
  }
}
