body {
  padding: 1rem;
  background-color: rgb(253, 191, 76);
  overflow: hidden;
}
button {
  width: 200px;
}
.selected {
  background-color: rgb(167, 167, 167);
}
#input {
  display: none;
}
#allArea {
  display: flex;
}
#fileList {
  border: solid 1px;
  background-color: white;
  height: 350px;
  width: 30%;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
  border-radius: 5px;
  font-size: small;
  overflow: auto;
}
.fileItem {
  cursor: pointer;
  border-bottom: solid 1px;
  padding: 0.5rem;
} 
#viewArea {
  margin: 0px 0px 0px 10px;
  border: solid 1px;
  background-color: white;
  height: 350px;
  width: 70%;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
  border-radius: 5px;
  overflow: auto;
}
#status {
    font-size: 1.25rem;
    font-weight: bold;
    color: red;
    margin-top: 1rem;
    margin-bottom: 1rem;
}