body {
background-color: #fdfdfd;
color: #454545;
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
margin: 0;
padding: 0;
height: 100%;
}

button{
  font-size: large;
  padding: 5px 10px;
  
}

/* ----------- header --------------*/

#header {
display: flex;
flex-wrap: nowrap;
background-color: #454545;
color: #ffffff;
width: 100%;
height: 50px;
position: fixed;
top: 0;
left: 0;
right: 0;
align-items: center;
}

#header_span {
	font-size: xx-large;
	margin-left: 1%;
	margin-right: 1%;
	align-items: center;
	overflow-x:clip;
	white-space: nowrap;
}

#header img {
	margin-left: 0.8%;
	margin-top: 0.2%;
	//margin: auto;
}

#header_username {
	//font-size: 1.5vw;
	margin: auto;
	margin-right: 0.8%;
	color: red;
}
/* ------- bodycontainer -----------*/

#bodycontainer {
	/*display: flex;
	flex-wrap: nowrap;*/
	position: fixed;
    top: 50px;
    bottom: 30px;
    left: 0;
    right: 0;
}

.menu_main_buttonB:hover{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
}

.menu_main_buttonB {
  opacity: 0.4;
}


.menu_main_button:hover{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#menu_pane {
	position: fixed;
	top: 50px;
    bottom: 30px;
    left: 0;
    right: 0;
	width: 120px;
	margin: 5px;
	border: 2px solid #969696;
	border-radius: 5px;
	text-align: center;
}

#main_pane {
	/*display: flex;
	flex-wrap: nowrap;*/
	position: fixed;
	overflow-y:scroll;
	//overflow-x:clip;
	top: 50px;
    bottom: 30px;
	left: 130px;
	right: 0;
	margin: 5px;
	padding: 5px;
	border: 2px solid #969696;
	border-radius: 5px;
}

.main_inner_pane_class {
	/*display: none;*/
	position: relative;
	top: 0;
    bottom: 0;
	left: 0;
	right: 0;
}


#main_deviceDetails_pane {
	display: flex;	
	flex-direction: row;
	justify-content: center;
    flex-wrap: nowrap;
	padding: 5px;
	/*position: relative;
	top: 0;
    bottom: 0;
	left: 0;
	right: 0;*/
}

#deviceDetailsLayout {
	display: flex;
    margin: 10px;
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
	white-space: nowrap;
}

.TagsInputField {
	border: 1px solid #969696;
	border-radius: 5px;
	margin: 2px;
	padding: 2px;
	color: black;
}
.TagsInputField:hover{
  border: 1px solid #6495ED;
}

#divSmallFileList {
	visibility: hidden;
	position: relative;
	left: 3%;
	padding: 5px;
	
	display: flex;
	text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
	
	/*
	top: 0;
    bottom: 0;
	right: 0;
	width: 120px;
	margin-left: 10px;
	margin-right: auto;*/
	border: 2px solid #969696;
	border-radius: 5px;
	white-space: nowrap;
	margin-top: 100px;
}

.bucketDetailsDiv {
	margin: 0px;
}

#diceDialogDivClassOverlay {
     visibility: hidden;
     position: absolute;
     left: 0px;
     top: 0px;
     width:100%;
     height:100%;
     text-align:center;
	 align-items: center;
	 align-content: center;
     z-index: 1000;
	 background: rgba(0,0,0,0.5);
}

.diceDialogDivClass {
	position: absolute;
	top: 20%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 5px;
	border: 2px solid #969696;
	border-radius: 5px;
	background-color: white;
	width: 35%;
	text-align:center;
}






/* ------- generic styles e.g. for table cells ----*/
.bolded {
  font-weight:bold;
  text-align:center;
}

.misc_inner_div_class {
	display: flex;
	position: relative;
	margin: 5px;
	padding: 5px;
	border: 2px solid #969696;
	border-radius: 5px;
	overflow-x:clip;
	align-content: center;
}


/* ------- login_div -----------*/
#login_div {
	height: 230px;
	margin: auto;
	margin-top:100px;
	padding: 10px;
	position: relative;
	width: 300px;
	border: 2px solid #969696;
	border-radius: 25px;
}
#forgottenPassword {
	position: absolute;
    bottom: 0px;
    right: 20px;
    font-size: small;
}
#forgottenPassword:hover {
	position: absolute;
    bottom: 0px;
    right: 20px;
    font-size: small;
	color: blue;
}

/* ----------- footer --------------*/
#footer
{
	background-color: #454545;
	color: #ffffff;
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
	height:30px;
	text-align: center;

}
#footer span 
{
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


