
body {
    background: #f6f6f6;
    font-family: 'Roboto', sans-serif;
}
a {
    color: #01579B;
}
h1, h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.planning tr:nth-child(4n-1) td, .planning tr:nth-child(4n-1) th {
    border-color: #e0e0e0;
}
.planning tr:nth-child(4n-2), .planning tr:nth-child(4n-1) {
    background: #f0f0f0;
}
[draggable] {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}
nav.bg-faded {
    background-color: #03A9F4; /* light blue: https://www.google.com/design/spec/style/color.html#color-color-palette */
    border-radius: 0;
}
nav.app-bar {
    height: 64px;
    padding: 4px 24px;
    margin-bottom: 16px;
    box-shadow: 0 0 10px gray;
}
ul.nav.nav-tabs {
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 10px 0;
    text-align: center;
}
ul.nav.nav-tabs .nav-item {
    display: inline-block;
    float: none;
}
ul.nav.nav-tabs .nav-link {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 500;
    padding: 14px 20px;
    color: gray;
}
ul.nav.nav-tabs .nav-link.active {
    color: #FF6F00;
    border-bottom: 2px solid #FF6F00;
}
ul.nav.nav-tabs .nav-link:hover {
    color: #FF6F00;
    border-bottom: 2px solid #FF6F00;
}
.breadcrumb {
    margin-bottom: 20px;
    border-radius: 0;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 30px 10px;
    font-size: .9rem;
}
.breadcrumb li:first-of-type {
    margin-left: 10px;
}
main {
    margin-left: 300px;
}
.sidebar {
    position: fixed;
    width: 300px;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    background: white;
    z-index: 1;
}
.sidebar header {
    height: 64px;
    border-bottom: 1px solid silver;
}
.sidebar header h1 {
    font-weight: 500;
    font-size: 1.5rem;
    margin: 0;
    padding: 20px 15px;
}
.sidebar header h1 a {
    color: gray;
}
.sidebar header h1 img {
    height: 35px;
    margin-top: -5px;
    margin-right: 5px;
    display: none;
}
.sidebar ul.nav {
    margin-top: 8px;
    font-size: 0.9rem;
}
.sidebar header h1 a:hover,
.sidebar ul.nav li a:hover {
    color: #03A9F4;
    text-decoration: none;
}
.sidebar ul.nav li i {
    display: inline-block;
    font-size: 1.1rem;
    margin-left: 16px;
}
.sidebar ul.nav li a {
    color:   gray;
    padding: 0;
    display: block;
    height: 48px;
    line-height: 48px;
    position: relative;
}
.sidebar ul.nav li a span {
    display: block;
    position: absolute;
    left: 60px;
    right: 0;
    top: 0;
    font-weight: 400;
}
.sidebar ul.nav ul.nav {
    margin: 0;
}
.sidebar ul.nav ul.nav li a {
    height: 38px;
    line-height: 38px;
}
.sidebar ul.nav ul.nav li a span {
    left: 90px;
    font-weight: 200;
}
.calendar .card-title {
    text-align: center;
}
.calendar .card-block {
    height: 360px;
}
.calendar .table td, .calendar .table th {
    padding: .5rem;
}

a.btn.fab-plus, a.btn.fab-play {
    border-radius: 50%;
    height: 0;
    width: 0;
    position: fixed;
    z-index: 2;
    left: 258px;
    bottom: 16px;
    font-size: 0;
    padding: 0;
    line-height: 0;
    box-shadow: 0 2px 5px gray;
    animation-name: fab-enter;
    animation-duration: .4s;
    animation-delay: .4s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    display: block;
    transition: background 0.2s, box-shadow 0.3s;
}
a.btn.fab-plus:hover, a.btn.fab-play:hover {
    box-shadow: 0 6px 15px gray;
}
a.btn.fab-play {
    padding-left: 8px;
}
@keyframes fab-enter {
    from {width: 0; height: 0; margin-bottom: 32px; margin-left: 32px; font-size: 0; line-height: 1px; transform: rotate(0)}
    to {width: 64px; height: 64px; margin-bottom: 0; margin-left: 0; font-size: 2rem; line-height: 64px; transform: rotate(360deg); }
}

.app-bar {
    text-align: right;
}
.app-bar h1 {
    position: absolute;
    color: white;
    margin-top: 0;
    line-height: 100%;
    font-size: 1.8rem;
    bottom: 0;
}
.app-bar .btn {
    padding: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    color: white;
    font-size: 1.4rem;
}

@media print {
    .sidebar, .navbar, .nav-tabs {
        display: none;
    }
    main {
        margin: 0;
    }
}
