* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow: hidden;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.marker {
  background-image: url('./pin.png');
  background-size: cover;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

/* Define CSS styles for the popup */
.popup {
  max-width: 300px;
  padding: 10px;
  font-family: Arial, sans-serif;
  background-color: #e6e6e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.thumbnail {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px;
}

.details-container {
  margin-bottom: 5px;
}

.details-container:nth-child(even) {
  background-color: #f2f2f2;
}

.details-container:nth-child(odd) {
  background-color: #e6e6e6;
}

.developer,
.delivery-date,
.price,
.sustainability-score {
  margin: 5px 0;
  font-size: 14px;
}

.crm-link,
.view-3d {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  height: 32px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
  border: none;
}


#loading-icon {
  width: 30px;
  height: 30px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000000;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}



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

.hidden {
  display: none;
}


.makani-marker {
  background-image: url('./makani_pin.png');
  background-size: cover;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.makani-popup {
  max-width: 250px;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}

.makani-popup p {
  margin: 5px 0;
}

.makani-popup strong {
  font-weight: bold;
}

.makani-popup a {
  color: #007bff;
  text-decoration: none;
}

.makani-popup a:hover {
  text-decoration: underline;
}