.hero-malwarescanner {
    background-image: url(../img/Virus_malware_hazard_icon.svg); /* **NOTE** don't hardcode the link in the future, will download this and put it on the box. this is for quick changes */
    background-repeat: no-repeat;
    background-size: calc(280px) 817px;
    background-position: center bottom -265px;
    /* opacity: 0.15; */
}

.upload-box-error {
    display: inline;
    color: white;
    font-size: medium;
}

.upload-box {
    width: 100%;
    font-size: 1.25rem;
    background-color: #efefef;
    outline: 2px dashed #b3b3b3;
    position: relative;
    padding: 100px 20px;
    outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
}

.upload-error{
    background-color: #d1514a;
    outline: 2px dashed #3b3b3b;
}

.advanced-upload .upload-box-dragndrop{
    display: inline;
}

.upload-box:hover{
    background-color: #dddddd;
    outline: 2px dashed #3b3b3b;
    cursor: pointer; /* "hand" cursor */
}

.upload-error:hover{
    background-color: #d1514a;
    outline: 2px dashed #3b3b3b;
}


.upload-box-draghover {
    outline-offset: -20px;
}


.upload-box-icon{
    width: 100%;
    height: 80px;
    fill: #3b3b3b;
    display: block;
    margin-bottom: 40px;
}

.upload-box-file{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-box-file + label {
    max-width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.upload-box-button {
    font-weight: 700;
    color: #e5edf1;
    background-color: #39bfd3;
    display: none;
    padding: 8px 16px;
    margin: 40px auto 0;
}

.hollow-dots-spinner, .hollow-dots-spinner * {
    box-sizing: border-box;
  }

  .hollow-dots-spinner {
    height: 15px;
    width: calc(30px * 3);
  }

  .hollow-dots-spinner .dot {
    width: 15px;
    height: 15px;
    margin: 0 calc(15px / 2);
    border: calc(15px / 5) solid #ff1d5e;
    border-radius: 50%;
    float: left;
    transform: scale(0);
    animation: hollow-dots-spinner-animation 1000ms ease infinite 0ms;
  }

  .hollow-dots-spinner .dot:nth-child(1) {
    animation-delay: calc(300ms * 1);
  }

  .hollow-dots-spinner .dot:nth-child(2) {
    animation-delay: calc(300ms * 2);
  }

  .hollow-dots-spinner .dot:nth-child(3) {
    animation-delay: calc(300ms * 3);

  }

  @keyframes hollow-dots-spinner-animation {
    50% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

.table-body{
  background-color: #dddddd !important;
}

.table-data{
    text-align: left !important; 
    margin: 0px !important;
    padding: 3px !important;
    font-size: small !important;
    border-color: #3b3b3b !important;
}

.table-header{
    margin: 0px !important;
    padding: 3px !important;
    font-size: small !important; 
    border-color: #3b3b3b !important;
    background: #3b3b3b !important;
    color: #e9e9e9 !important;
}

.left-data{
    border-right: none !important;
}

.right-data{
    border-left: none !important;
}

.trow:hover {
  background-color: #f43a3a !important;
  color: #fff;
}

.trow:hover a{
  color: #fff;
}

.hash-column {
  max-width: 300px; /* Adjust the value based on your design */
  overflow: hidden;
  text-overflow: ellipsis; /* This will add an ellipsis (...) to indicate truncated text */
  white-space: nowrap; /* Prevents text from wrapping to the next line */
}

.name-column{
  text-align: left;
  max-width: 100px; /* Adjust the value based on your design */
  overflow: hidden;
  text-overflow: ellipsis; /* This will add an ellipsis (...) to indicate truncated text */
  white-space: nowrap; /* Prevents text from wrapping to the next line */
}