@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    margin: 0;
    font-family: 'Open Sans';
    font-size: 3vh;
}
table {
    border-spacing: 0px;
    width:100%
}

th {
    text-align: left;
    padding: 1vh 1vw 1vh 1vw;
}

.divTableRow:nth-child(even) {
    background: #0153a7;
}

.divTableRow:nth-child(odd) {
    background: #05276f;
}

.line-through {
    text-decoration-line: line-through;
}

.bold {
    font-weight: bold;
}

.divTable{
	display: table;
	width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	display: table-header-group;
}

.thRow {
    background: rgb(165, 204, 255) !important
}

.divTableCell {
	border: 0;
	display: table-cell;
    text-align: left;
    padding: 1vh 1vw 1vh 1vw;
}
.divTableHead {
	font-weight: bold;
    text-align: left;
    padding: 1vh 1vw 1vh 1vw;
    display: table-cell;
}

.divTableBody {
	display: table-row-group;
    color: white;
    font-weight: bold;
}

.dateRow {
    background-color: #aaaaaa;
    color:  black;
    padding: 1vh 0vw 1vh 0vw;
    font-weight: bold;
    text-align: center;
    width: 100%
}

.dateCell {
    column-span: all;
}

.numberCell {
    width: auto;
}

.attention {
    width: 3vh
}

.hourCell {
    color: #fbff22;
}

.disrupted {
    background-color: rgb(255, 152, 152) !important;
}

#overlay {
    position: fixed;
    left: 0px;
    top:0px;
    background-color: rgba(0,0 ,0 , 0.5);
    width: 100%;
    height: 100%;
    z-index:1;
    display:none;
}
    
#popup {
    margin: 10% auto;
    width : 70%;
    background-color: rgb(243, 243, 243);
    padding: 1em;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
#btnClose {
    float: right;
    font-size:3vh;
    cursor: pointer;
    color: black;
}

.none {
    display: none;
}
