gmp-map {
    height: 100%;
    width: 100%;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#floating-panel {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px;
    padding: 5px;
    font:
        400 18px Roboto,
        Arial,
        sans-serif;
    width: 350px;
    height: 100px;
}

#response-container {
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 5px;
    margin: 10px;
    font-size: small;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    max-height: 70vh;
    overflow-x: auto;
    display: none;
}

#address {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
}

#submit,
#clear {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    height: 40px;
    cursor: pointer;
}

#clear:hover {
    background: rgb(235, 235, 235);
}

#submit {
    background-color: #1a73e8;
    color: white;
}

#submit:hover {
    background-color: #1765cc;
}
