article,aside, nav, section h1 {
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-end: 0px;
    font-weight: bold;
}

.error-message {
    color: red;
    margin-top: 5px;
}
.progress-bar {
    width: 300px;
    margin: 0 auto;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 3px;
}

.progress-bar-fill {
    background-color: #4CAF50;
    height: 20px;
    border-radius: 5px;
    transition: width 0.2s;
    text-align: center;
    line-height: 20px;
    color: #000;
}


.file-result {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.file-result span {
    margin-right: 10px;
}

.success {
    color: green;
}


.file-results table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .file-results th,
  .file-results td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  
  .file-results th {
    font-weight: bold;
  }
  
  .file-results .progress-bar {
    height: 25px;
    background-color: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .file-results .progress-bar-fill {
    height: 100%;
    background-color: #4caf50;
    width: 0%;
    transition: width 0.3s ease-in-out;
  }
  
  .file-results .success {
    color: green;
  }
  
  .file-results .failed {
    color: red;
  }

  .file-results td.fileNameCell {
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
  }
  
  .file-results td.fileNameCell:hover::after {
    content: attr(data-file-name);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f2f2f2;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-width: 300px;
    word-break: break-all;
  }


  .remove-button {
    /* Your styling properties here */
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }

  .error {
    color: red;
    border: 1px solid red !important;
}