.btn-geocode {
  background-color: #f3f4f6;
  color: #2563eb;
  padding: 3px 6px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
}
.btn-geocode:hover {
  background-color: #e0e7ff;
}

#store-table {
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-right: 10px;
} 

@keyframes slm-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.slm-rotating {
  animation: slm-spin 1s linear infinite;
}

.slm-search-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px; /* space between input and button */
  max-width: 600px; /* optional width constraint */
  margin-bottom: 1em;
}

.slm-search-wrapper {
  position: relative;
  flex: 1; /* input takes up available space */
}

#location-search {
  width: 100%;
  padding-right: 30px;
  box-sizing: border-box;
  height: 36px;
}

.slm-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #888;
}