* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gilroy';
}

html, body {
  height: 100%;
  width: 100%;
}

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

#buttons {
    width: auto;
    margin: 0 1em;
    padding:0;
    position:absolute;
    top:0;
    left:0;
    z-index:99;
    }
.button {
    display: block;
    position: relative;
    cursor: pointer;
    width: auto;
    padding: 8px;
    border-radius: 3px;
    margin: 10px 0 0 0;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background: #3174ff;
    font-family: sans-serif;
    font-weight: bold;

}

.location-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #ccc;
    border-radius: 20%;
    cursor: pointer;
    font-size: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.location-button:hover {
    background-color: #f0f0f0;
}

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