﻿body {
    color: #3c4858;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
    line-height: 25px;
    user-select: none;
}

a {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #bbb;
    border-radius: 8px;
    padding: 20px;
    color: #3c4858;
    font-size: 18px;
    text-decoration: none;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%);
}

a:hover {
    border-color: #888;
    background: #e2e2e2;
    background: -moz-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%);
    background: -webkit-linear-gradient(top, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
    background: linear-gradient(to bottom, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
}

div.content {
    padding: 0px 15px;
}

header {
    display: flex;
    align-items: center;
}

header h1 {
    font-size: 28px;
    line-height: 36px;
    flex: 1 1;
}

header img {
    height: 80px;
}

div.shared-desks {
    padding-top: 50px;
}

h3 {
    background: #43a047;
    color: white;
    text-align: center;
    padding: 20px 0px;
    margin-bottom: 40px;
}

h3 > span:first-child {
    display: block;
    font-size: 52px;
    line-height: 60px;
}

h3 > span:last-child {
    display: block;
    font-size: 18px;
    line-height: 24px;
}

div.calendar-events .date {
    font-size: 24px;
    line-height: 28px;
    border-bottom: 1px solid black;
    margin-bottom: 15px;
    margin-top: 30px;
}

div.today-calendar-events {
    border-bottom: 1px solid black;
    margin-bottom: 20px;
}

div.calendar-event {
    display: table-row;
    font-size: 20px; 
    line-height: 24px;
}

div.calendar-event > div.date {
    display: table-cell;
    width: 120px;
    padding-right: 25px;
    padding-bottom: 20px;
}

div.calendar-event > div.time {
    display: table-cell;
    width: 135px;
    padding-right: 25px;
    padding-bottom: 20px;
    white-space: nowrap;
}

div.calendar-event > div.employee {
    padding-bottom: 20px;
}

div.date {
    font-weight: bold;
}

span.state {
    display: inline-block;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    line-height: 12px;
    padding: 3px;
}

.free {
    background: #43a047;
}

.busy {
    background: #05427B;
}

.busy-today {
    background: darkorange;
}