/* Search form full-width, button fixed width */
#dl-form.dealer-search-form { width:100%; max-width:100%; display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 10px;}

#dl-form.dealer-search-form input, #dl-form.dealer-search-form select { flex:1; min-width:120px; padding:10px 12px; border:1px solid #ddd; border-radius:8px; }
#dl-form.dealer-search-form button { width:100px; flex:0 0 auto; border-radius:8px; }

/* Layout */
.dl-grid { display:grid; grid-template-columns: 1fr 2fr; gap:16px; }
.dl-results { max-height: 560px; overflow:auto; border:1px solid #eee; border-radius:10px; padding:8px; }
.dl-map { height: 560px; border-radius:10px; overflow:hidden; }

/* Cards */
.dl-card { display:flex; gap:12px; padding:12px; border-bottom:1px solid #f0f0f0; }
.dl-card-index { width:28px; height:28px; background:#0f172a; color:#fff; border-radius:999px; display:flex; align-items:center; justify-content:center; font-weight:700; }
.dl-card-body h4 { margin:0 0 6px; }
.dl-card-meta { color:#6b7280; font-size:13px; margin-bottom:4px; }
.dl-card-actions a { font-size:13px; }

/* Mobile */
@media (max-width: 768px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-map { height: 420px; }
}
