#mapContainer {
    width: 100%;
    height: 100vh;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#popup {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

#popup button {
    margin: 0;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    background: #28a745;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

#popup button:hover {
    background: #218838;
}

#search {
    position: absolute;
    top: 20vh;
    left: 10px;
    background: white;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 38vw;
    height: 45vh;
}
