/*
For styles specific to the "app framed" parts of the site, e.g. score submission
and admin pages. Although these are intended to be pretty mobile-friendly, some
of the tabluar UI gets horizontal-scrolly, and most use, especially GNL administration,
is on tablet/desktop. Thus, clunkier than mobile.css, thus the name. 
This is intended to be applied exclusive of mobile.css. 
*/
body {
    display: flex;
    margin: 0;
    padding: 0;
}

nav {
    height: 100vh;
    min-height: 24em;
    background-color: #444;
    display: flex;
    flex-direction: column;
    margin-right: 1.3em;
    position: sticky;
    top: 0;
}
.nav-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    margin:1em .3em;
}
.nav-header .logo {
    width: 64px;
    height: 64px;
    margin-left: .7em;
}
.nav-header button {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    width: 48px;
    height: 48px;
    background-color: transparent;
    background-image: url(gnl-burger.svg);
    background-size: contain;
}

.nav-hideable {
    display:none;
}
.nav-visible {
    min-width: 240px;
}
.nav-visible .nav-hideable {
    display:block;
}
.avatar {
    font-size: .7em;
}

nav a {
    text-decoration: none;
    padding: .6em 1em;
    margin: 0;
    color: #eee;
}

nav a:hover {
    background-color: #fa0;
    color: #444;
}

section {
    flex-grow: 1;
    margin-right: 1em;
    margin-bottom: 2em;
}

table {
    width: 100%;
}

.info-button {
    width: 32px;
    height: 32px;
    background-size: contain;
    cursor: pointer;
}

#modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    display:flex;
	flex-direction:column;
    justify-content: center;
	align-items:center;
}

#modalContent {
    background: #fff;
    margin: 1em;
    padding: 1em;
    border-radius: .3em;
    min-width: 50vw;
    box-shadow: 0 0 1em #000;
}

