body, html{
    margin: 0;
    padding: 0;
	font-family: "Roboto", "Arial", sans-serif;
}
.header{
    padding-top: 10px;
    background-color: white;
    overflow: hidden;
    width: 100%;
}
.sidebar{
    display: none;
    background-color: white;
    position: fixed;
    height: 100%;
    width: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    flex-direction: column;
}
.edit_sidebar{
    display: none;
    background-color: white;
    right: 0;
    padding-left: 50px;
    position: fixed;
    height: 100%;
    width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    flex-direction: column;
    gap: 30px;
	height: 100vh;
	overflow-y:scroll;
}
.edit_sidebar input,.status{
    border: none; 
    border-bottom: 1px solid #bdbdbd;
    outline: none; 
}
.sidebar a{
    display: block;
    color: gray;
    width: 70%;
    padding-left: 50px;
    padding-bottom: 20px;
    text-decoration: none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}     
.sidebar a.active {
    color: black;
}
.selectedoption{
    background-color: white;
    padding: 4.2px;
    border-width: 2px;
    border-color: #000000;
    border-radius: 6px;
    margin-right: 10px;
}
.options{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.option{
    background-color: white;
    padding: 4.2px;
    border-width: 1px;
    border-color: #f7f7f7;
    border-radius: 6px;
    margin-right: 10px;
}
.sidebar h3{
    padding-left: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}  
.topbar{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.dateinput{
    padding: 3px;
    border-radius: 6px;
    border-width: 1px;
    margin-right: 10px;
}
.btn{
    background-color: white;
    cursor: pointer;
    border: none;
    margin-left: 10px;
    margin-right: 10px;
}
#storages{
    padding: 3.7px;
    border-radius: 6px;
    margin-right: 10px;
}
.subbutton{
    background-color: white;
    padding: 4px;
    border-width: 1px;
    border-radius: 6px;
    margin: 0
}
.downloadbutton{
    background-color: white;
    padding: 4.2px;
    border-width: 1px;
    border-radius: 6px;
    margin-right: 10px;
}
table{
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
	display: block;
    overflow-x: scroll; /* Scrollbar are always visible */
}  
td{
    border:  2px solid #BEBEBE;
    border-top: none;
    border-left: none;
    border-right: none;
	padding-top: 15px;
    padding-bottom: 15px;
	text-align: center
}
th{
    padding-top: 12px;
    padding-bottom: 15px;
    font-weight: 100;
    color: black;
    border:  2px solid black;
    border-top: none;
    border-left: none;
    border-right: none;
}
#cancelEdit{
    padding: 10px;
    margin-right: 40px;
    background-color: white;
    border-width: 1px;
    border-radius: 6px;
    cursor: pointer;
}
#Edit{
    padding: 10px;
    margin-right: 40px;
    background-color: #383838;
    border-width: 1px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
	margin-bottom: 20px
}
