@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(53deg, #fff 0%, #090979 63%);
}

.file-uploader {
  width: 500px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.uploader-header {
  display: flex;
  padding: 20px;
  background: #EEF1FB;
  align-items: center;
  border-radius: 5px 5px 0 0;
  justify-content: space-between;
}

.uploader-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.file-completed-status {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.file-list {
  list-style: none;
  width: 100%;
  padding-bottom: 10px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-color: #999 transparent;
  scrollbar-width: thin;
}

.file-list:has(li) {
  padding: 20px;
}

.file-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.file-item:last-child {
  margin-bottom: 0px;
}

.file-extension {
  height: 50px;
  width: 50px;
  color: #fff;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #3d00c0;
}

.file-content-wrapper {
  flex: 1;
}

.file-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.file-name {
  font-size: 1rem;
  font-weight: 600;
}

.file-info {
  display: flex;
  gap: 5px;
}

.file-info small {
  color: #5c5c5c;
  margin-top: 5px;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.file-status {
  color: #3d00c0;
}

.cancel-button {
  align-self: center;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
}

.cancel-button:hover {
  color: #E3413F;
}

.file-progress-bar {
  width: 100%;
  height: 3px;
  margin-top: 10px;
  border-radius: 30px;
  background: #d9d9d9;
}

.file-progress {
  width: 0%;
  height: inherit;
  border-radius: inherit;
  background: #3d00c0;
}

.continueButton {
  display: none;
  margin: 20px auto;
  padding: 10px 20px;
  background: #3d00c0;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.continueButton:hover {
  background: #290080;
}

.file-upload-box {
  margin: 10px 20px 20px;
  border-radius: 5px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #B1ADD4;
  transition: all 0.2s ease;
}

.file-upload-box.active {
  border: 2px solid #3d00c0;
  background: #F3F6FF;
}

.box-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #626161;
}

.file-browse-button {
  color: #3d00c0;
  cursor: pointer;
}
.file-browse-button:hover {
  text-decoration: underline;
}
