*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.7); /* Semi-transparent black overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's above the map */
}

#popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    max-width: 800px;
    background-color: rgba(36, 36, 36, 0.7);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

#popup-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin: 1rem;
}

#close-popup-button {
    padding: 0.4em 0.8em;
    background: #306844;
    border: 0;
    outline: none;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 500;
    border-radius: 1em;
    color: #242424;
    justify-self: end;
    align-self: end;
    cursor: pointer;
    margin: 0.3em;
}

#close-popup-button:hover {
    border: 1px solid #306844;
    color: #306844;
    background: #242424;
}

.instructions {
    max-width: 800px;
    font-size: clamp(1rem, 2vw, 2rem);
}


#mapdiv {
    height: 100vh;
    width: 100vw;
    background-color: #242424;
}

