/* Minimal custom styles — Tailwind handles most */
.tab-btn { border-color: transparent; color: #6b7280; }
.tab-btn:hover { color: #E8A838; }
.tab-btn.active { border-color: #E8A838; color: #E8A838; }

.progress-bar {
  transition: width 0.3s ease;
}

table th.sortable { cursor: pointer; user-select: none; }
table th.sortable:hover { color: #E8A838; }

/* Sort indicators */
th[data-sort="asc"]::after { content: ' ▲'; font-size: 0.7em; }
th[data-sort="desc"]::after { content: ' ▼'; font-size: 0.7em; }

/* Map */
#map-container { transition: height 0.3s ease; }
@media (max-width: 640px) {
  #map-canvas, #map-loading { height: 300px !important; }
}
