/* Location Banner Styles */
.gm-location-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  font-size: 14px;
  color: #495057;
}

.gm-btn-small {
  background: #007bff;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.gm-btn-small:hover {
  background: #0056b3;
}

.gm-btn-small:active {
  transform: scale(0.95);
}

/* Responsive design */
@media (max-width: 480px) {
  .gm-location-banner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .gm-btn-small {
    width: 100%;
    padding: 8px 16px;
  }
}
