/**
 * @license
 * Copyright 2019 Google LLC. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
  height: 100%;
}

:root {
  --inspinia-blue: #00b4df;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.map-info-box-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-info-box-container .website > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: black;
}

a.link {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

a.link:hover {
  color: var(--inspinia-blue);
}
