button {
    width: 100%;
}

body {
    background-color: lightblue;
}

#modalTitle {
    font-size: 18px;
}

div#content {
    width: 100%;
    height: 100%;
}

.container-fluid {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

input.sheetId {
}

div.spacer {
    width: 100%;
    height: 32px;
}

.form-group {
    margin-bottom: 5px;
}

div.section {
    border-radius: 4px;
    border: 1px dashed darkblue;
    margin-bottom: 10px;
    padding: 5px;
}

div.section input, div.section select {
    margin-bottom: 10px;
}

@media screen and (min-width: 500px) {
    body {
        width: 500px;
    }
    body input.sheetId {
        font-size: 100%;
    }

    div.top-right {
        position: absolute;
        top:  5px;
        left: 465px;
    }

    div.menu-top-right {
        position: absolute;
        top:  5px;
        left: 456px;
    }

    div#menu {
        top:  5px;
        left: 6px;
        width: 490px;
    }
}

@media screen and (max-width: 499px) {
    body {
        /*mobile devices will see the width based on device-specific width set in the viewport tag*/
        /*width: 500px;*/
    }

    input.sheetId {
        height: 40px;
        font-size: 130%;
    }

    div.top-right {
        position: absolute;
        top:  5px;
        right: 11px;
    }

    div.menu-top-right {
        position: absolute;
        top:  5px;
        right: 11px;
    }

    div#menu {
        top:  5px;
        right: 6px;
    }
}
