/* Main canvas application page styles for elements outside the canvas. */

html {
    font-family: sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#gm-login-logout {
    color: #ddd;
    text-decoration: underline;
}

div#gm-page-container {
    display: flex;
    flex-direction: column;
    background: #F5F5F5;
    height: 100%;
}

/* Mimic styling from bootstrap's "scaffolding" stylesheet */
body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

/* Mimic bootstrap styling */
* {
    box-sizing: border-box;
}

/* Mimic styling for bootstrap modal backdrops */
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}
.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}
