#bw-downloader-app {
  .files {
    flex-grow: 1;
    padding: 1rem 0;

    .file {
      display: flex;
      flex-wrap: wrap;
      gap: 0 0.5em;

      .file-status {
        width: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .file-status-errored {
        color: #7f1200;
      }
      .file-status-downloaded {
        color: #0b7c12;
      }
      .file-name {
        flex-grow: 1;
      }
      .file-size {
        justify-self: end;
      }
      .progress-bar {
        flex: 0 0 100%;
      }
      .progress-bar-inner {
        background-color: #9C9C9C;
        height: 2px;
      }
    }
  }
  .auth {
    border-bottom: var(--sidebar-separator);
    display: flex;
    justify-content: space-between;
  }
  footer {
    border-top: var(--sidebar-separator);
    padding: 1rem 0 0;
    font-size: var(--font-size-14);
    justify-self: end;
  }
}
