@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600&display=swap');

*{
  font-family:Nunito;
}

.buttons{
  display: flex;
  justify-content: space-between;
  margin: 5px;
  padding: 5px;
  max-width: 700px;
  
}

button {
  margin: 5px;
  padding: 5px;
  width: 120px;
  height: 30px;
  color: #0F75BD;
  background-color: white;
  font-weight: bold;
  font-size: 14px;
  border: solid 2px;  
}

.buttons p {
  /* width: 100%; */
  text-align: right;
}

.uploaded-files{
  max-width: 100%;
  height: 350px;
  border: solid 2px #54CEF8;
  overflow: auto;
}

.file-row{
  display: flex;
  min-height: 60px;
  justify-content: space-between;
}

.file-row p{
  width: 240px;
  min-height: 50px;
  margin: 5px; 
}

.progress-bar{
  width: 175px;
  height: 10px;
  border: 1px;
  border-color: black;
  border-style: solid;
  display: flex;
  flex-direction: column;
  background-color: white;

}

.progress{
  background-color: #5CCD61;
  height: 10px;
  border-radius: 0px;
}

/* #upload-container {
  border: solid 5px #0F75BD;
  padding: 20px;
  max-width: 60%;
  max-height: 80%;
  margin-left: 20%;
} */

.file-size-progress{
  margin:5px;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

#upload-container{
  opacity: 1.0;
}
