/* css styles */

table {
    font-size: 11pt;
    text-align: left;
}

/* lightbox details */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: auto; 
}

.lightbox-content {
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  bottom: 5%;
  width: 90%;
  height: calc(90% - 60px); 
  border: none;
}

.close {
  position: fixed; 
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}