@charset "utf-8";
.dkcm-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .dkcm-wrapper {
    grid-template-columns: 1fr;
  }
}

.dkcm-sidebar {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dkcm-search {
  margin-bottom: 10px;
}
.dkcm-search-label {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}
.dkcm-search-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.dkcm-results {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  overflow: auto;
  flex: 1;
  border-top: 1px solid #f3f4f6;
}
.dkcm-result-item {
  border-bottom: 1px solid #f3f4f6;
}
.dkcm-result-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.dkcm-result-btn:hover {
  background: #f9fafb;
}
.dkcm-result-title {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}
.dkcm-result-address {
  font-size: 13px;
  color: #4b5563;
  margin-top: 2px;
}
.dkcm-result-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.dkcm-result-actions a {
  font-size: 12px;
  color: #2563eb;
  text-decoration: none;
}
.dkcm-result-actions a:hover {
  text-decoration: underline;
}

.dkcm-map-section {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 80vh;
  min-height: 420px;
}

.dkcm-map {
  width: 100%;
  height: 100%;
}