body {
    margin: 0;
    padding: 0;
}
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.map-overlay {
    position: absolute;
    left: 0;
    padding: 10px;
}

.marker {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    background-color: #000000; 
    border: none;
    color:#ffffff;
    border-radius: 15px;
    font-size: 1.5em;
    padding: 8px 16px;
    text-align: center;
    margin: 4px 2px;
    cursor: pointer;
  }
.mapboxgl-popup {
    max-width: 200px;
  }
  
  .mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
  }

.legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-family: 'Open Sans', sans-serif;
    max-width: 220px;
}

.legend h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
}

.disclaimer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.disclaimer-content {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.disclaimer-content h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #333;
}

.disclaimer-content p {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.disclaimer-content ul {
    text-align: left;
    margin: 15px auto;
    display: inline-block;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}