
html {
    height: 100%;
}

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

.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif; 
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.container {
  float: left;
  overflow: hidden;
}

.container .menuButton {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .container:hover .menuButton, .dropbtn:focus {
  background-color: orange;
}

.menuItems {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.menuItems a {
  float: none;
  font-size: 12px;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.menuItems a:hover {
  background-color: #ddd; 
}

.show {
  display: block; 
}

#bg_mask {
  position: absolute;
  top: 0;
  right: 200;  bottom: 200;
  left: 0;
  margin: auto;
  margin-top: 0px;
  width: 250px;
  height: 230px;

  z-index: 0;
  visibility: hidden;
  opacity: 1; 
} 

#frontlayer {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 50px 50px 50px 50px;
  padding : 20px 20px;
  width: 250px;
  height: 230px;
  background-color: orange;
  visibility: hidden;
  border: 1px solid black; 
  opacity: 1;
  z-index: 1;
}

.splitter {
    width: 100%; 
    height: 100%; 
    display: flex; 
}

#separator {
    cursor: col-resize;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    width: 0px;
    height: 100%;

    /* Prevent the browser's built-in drag from interfering */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#panel {
    background-color: #000; 
    width: 100%; 
    height: 100%;     
}

#taula {
    background-color: #000; 
  font-size: 16px;
  color: white;
    width: 0%; 
    height: 100%; 
    overflow-y: auto; 
}

.statusBar {
  width: 100%;
  background-color: #000;
}

.progressBar {
  width: 0%; 
  height: 5px;
  background-color: #a00 ;
}

