html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 1);
  scroll-behavior: smooth;
  user-select: none;
}

header {
  width: 100%;
  margin-top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}

#header-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#header-top a {
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-size: 3em;
  padding-left: 0.5em;
}

#search-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 0.5em;
}

#search-div input {
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

#search-div button {
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

main {
  color: rgba(255, 255, 255, 0.75);
  height: 100vh;
  border-radius: 7px;
  border-color: rgb(255, 255, 255);
  border-width: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin-left: 1vw;
  margin-right: 1vw;
}

main h2 {
  color: rgb(255, 255, 255);
}

main table {
  background-color: rgba(255, 255, 255, 0.1);
  overflow: auto;
  border-radius: 7px;
  width: 100%;
}

main table thead {
  background-color: rgba(255, 255, 255, 0.15);
  text-align: left;
}

main table thead tr th {
  padding-left: 10px;
}

main table tbody tr td {
  color: rgb(255, 255, 255);
}

main table tbody tr td#file-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main table tbody tr td span#file-name {
  color: white;
}

main table tbody tr td span#file-buttons {
  display: flex;
  width: 50%;
  flex-direction: row;
  justify-content: space-around;
}

button#file-download {
  background-color: rgba(44, 214, 39, 0.841);
  border-radius: 5px;
}

button#file-watch {
  background-color: rgba(44, 214, 39, 0.841);
  border-radius: 5px;
}
