html,body{
    margin:0;
    padding:0;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color:#FFD300;
}
*{box-sizing:border-box;}


.main-navigator-holder{
    width: 100%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    background-color: #fff;
    max-height: calc(100% - 40px);
}
.main-navigator-holder.bigger{
    max-width:1700px;
}
.main-navigator > h3 {
    margin: 0 0 20px 0;
    font-weight: bold;
}
.main-navigator > a {
    margin-bottom: 20px;
}

input[type="submit"], .button {
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    background: #3ab3bd;
    position: relative;
    transform: translateY(0);
    box-shadow: 0 6px 0 0 #1c8f98;
    transition: 0.2s;
    border: 0;
}
input[type="submit"]:hover, .button:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(3px);
    background-color: #3bbdc7;
    box-shadow: 0 3px 0 0 #1c8f98;
}
.formInput {
    margin: 0 0 20px;
}
.formInput > * {
    display: block;
}
.formInput input {
    width: 100%;
    -webkit-appearance: none;
    border: 1px solid #999;
    padding: 5px 10px;
}
textarea.acces_token_input {
    width: 100%;
    -webkit-appearance: none;
    border: 1px solid #999;
    padding: 5px 10px;
    min-height: 110px;
}

.cron_table_outer {
    max-height: 800px;
    overflow: auto;
}
table.cron_logger{
    width:100%;
}
table.cron_logger tr td,table.cron_logger tr th{
    padding: 9px;
}
table.cron_logger tr td:nth-child(2), table.cron_logger tr th:nth-child(2) {
    min-width: 200px;
}
table.cron_logger tr td:nth-child(3), table.cron_logger tr td:nth-child(4) {
    max-width:390px;
    font-size: 10px;
    word-break: break-word;
}
table.cron_logger tr:nth-child(odd) {
}
table.cron_logger tr th {
    background-color: #000;
    color: #fff;
}
td[data-status='0'] {
    background-color: #ff939e;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
td[data-status='1'] {
    background-color: #39ff66;
    color: #fff;
    font-weight: bold;
    text-align: center;
}


.overview_table_outer {
    max-height: 800px;
    overflow: auto;
}
table.overview_table{
    width:100%;
}
table.overview_table tr td,table.overview_table tr th{
    padding: 9px;
}
table.overview_table tr:nth-child(odd) {
    background-color: #f3f3f3;
}
table.overview_table tr th {
    background-color: #000;
    color: #fff;
}
table.overview_table tr td:nth-child(2) {
    width: 370px;
}
table.overview_table tr td:nth-child(3){
    max-width: 600px;
    font-size: 10px;
    word-break: break-word;
}
table.overview_table tr td:nth-child(4){
    max-width:100px;
}
.day_row {
    background-color: #c7c7c7;
    font-weight: bold;
    border:2px solid #c7c7c7;
}
table.cron_logger tr:not(.day_row) {
    border-left:2px solid #c7c7c7;
    border-right:2px solid #c7c7c7;
}
table.cron_logger tr:last-child{
    border-bottom:2px solid #c7c7c7;
}
table.cron_logger tr td:nth-child(5) {
    min-width: 100px;
}
table.cron_logger tr:first-child {
    border: 2px solid #000!important;
}







.diagram {
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 100px;
}

.diagram_item {
    width:100px;
    background: #000000;
    min-height:20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: relative;
}

.diagram_item span {display: block;text-align: center;color: #fff;font-size: 12px;line-height: 20px;width: 100%;}

.diagram_item:after {
    content: attr(data-name);
    font-size: 12px;
    display: block;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
}