#googleMapsContainer {
    display: none;
    position: fixed;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 90vh;
    z-index: 99999999;
    background-color: white;
}

#closeGoogleMaps {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    background-color: #f44336;  /* Red background */
    color: white;  /* White text */
    border: none;
    cursor: pointer;
    border-radius: 5px;  /* Rounded corners */
    font-size: 16px;
    transition: background-color 0.3s;  /* Smooth transition */
}

#closeGoogleMaps:hover {
    background-color: #d32f2f;  /* Darker red on hover */
}

#googleMapsFrame {
    width: 100%;
    height: 90%;
    border: none;
}
