#map-container {
    position: relative;
    width: 100%;
    height: 400px; /* Stelle sicher, dass die Höhe mit dem iFrame übereinstimmt */
}

#map {
    width: 100%;
    height: 100%;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#overlay-content {
    text-align: center;
    color: white;
}

#accept-btn {
    padding: 10px 20px;
    background-color: #004e9e;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
