.filespace-container .panel-heading span{
    font-weight: bold;
    color: black;
}

.filespace-wrapper {
    text-align: center;
    margin: 25px auto;
    font-size: 16px;
    font-weight: normal;
}

.filespace-wrapper table {
    border: 1px;
    border-collapse: collapse;
    margin: auto;
}

.filespace-wrapper table td {
    font-style: italic;
    padding-left:15px;
    padding-right:15px;
}


#alert_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 50px;
  background-color: rgba(256, 256, 256, 0.7);
  display:flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 1s linear;
}

#alert_box p {
  font-size: 20px;
  font-weight: bold;
}

