/* Importing Inter Font from Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap'); */
.file-uploader * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.file-uploader {
  max-width: 600px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.file-uploader .uploader-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 8px 20px;
}
.uploader-header .uploader-title {
  font-size: 1.2rem;
  font-weight: 700;
}
.uploader-header .file-completed-status {
  font-size: 1rem;
  font-weight: 1000;
  color: #333;
}
.file-uploader .file-list {
  list-style: none;
  width: 100%;
  max-height: 310px;
  overflow-y: auto;
  scrollbar-color: #999 transparent;
}
.file-uploader .file-list:has(li) {
    padding: 20px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}
.file-list .file-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.file-list .file-item:last-child {
  margin-bottom: 0px;
}
.file-list .file-item .file-extension {
  height: 50px;
  width: 50px;
  color: #fff;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #2ecc70;
}
.admin-page .file-list .file-item .file-extension {
  background: #ff5d38;
}
.file-list .file-item .file-content-wrapper {
  flex: 1;
}
.file-list .file-item .file-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.file-list .file-item .file-name {
  font-size: 0.9rem;
  font-weight: 600;
}
.file-list .file-item .file-info {
  display: flex;
  gap: 5px;
}
.file-list .file-item .file-info small {
  color: #5c5c5c;
  margin-top: 5px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}
.file-list .file-item .file-info .file-status {
  color: #2c9658;
}
.admin-page .file-list .file-item .file-info .file-status {
  color: #ff5d38;
}
.file-list .file-item .cancel-button {
  align-self: center;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
}
.file-list .file-item .cancel-button:hover {
  color: #E3413F;
}
.file-list .file-item .file-progress-bar {
  width: 100%;
  height: 3px;
  border-radius: 30px;
  background: #d9d9d9;
}
.file-progress-bar {
    margin-top: 2px;
}
.file-list .file-item .file-progress-bar .file-progress {
  width: 0%;
  height: inherit;
  border-radius: inherit;
  background: #2ecc70;
}
.admin-page .file-list .file-item .file-progress-bar .file-progress {
  background: #ff5d38;
}
.file-uploader .file-upload-box {
  border-radius: 5px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #2ecc706c;
  transition: all 0.2s ease;
}
.admin-page .file-uploader .file-upload-box {
  border: 2px dashed #ff5d389d;
}
.file-uploader .file-upload-box.active {
  border: 2px solid #2ecc706c;
  background: #2ecc70;
}
.admin-page .file-uploader .file-upload-box.active {
  border: 2px solid #ff5d389d;
  background: #ff5d38;
}
.file-uploader .file-upload-box.active span {
  color: #fff;
  font-weight: 600;
}
.file-uploader .file-upload-box .box-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #626161;
}
.file-uploader .file-upload-box.active .box-title {
  pointer-events: none;
}
.file-upload-box .box-title .file-browse-button {
  color: #2c9658;
  cursor: pointer;
}
.admin-page .file-upload-box .box-title .file-browse-button {
  color: #ff5d38;
}
.file-upload-box .box-title .file-browse-button:hover {
 text-decoration: underline;
}
.file-upload-box-wrapper {
    padding: 20px;
}