body {
  background-color: #161926;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title h1,
.title p {
  margin: 0 0 0 20px;
}

p.center {
  text-align: center;
}

a {
  color: rgba(29, 131, 210, 0.8);
  font-weight: bold;
  font-size: 16px;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 25px;
  background-color: rgb(32, 48, 69);
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

nav {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 15px;
}

nav>a {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
}

nav>a.active {
  background-color: rgba(29, 131, 210, 0.8);
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: #fff;
}

.control {
  display: flex;
  margin: 25px 0;
}

.control>label,
.control>input {
  flex: 1;
}

.actions {
  text-align: right;
}

button {
  background-color: blue;
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 8px;
  padding: 5px 15px;
  font-size: 18px;
  cursor: pointer;
}

.error {
  background-color: #f00;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  margin: 25px 0;
}

.error p {
  color: rgb(255, 200, 200);
  text-align: center;
  margin: 5px;
  font-weight: bold;
}

.row {
  display: flex;
  margin: 25px 0 0;
  font-size: 12px;
  align-items: center;
  gap: 10px
}

.row>div {
  flex: 1 1 15%;
  text-align: right;
}

.row>div:last-child {
  text-align: center;
}

.row>div:first-child {
  flex: 1 1 100%;
  text-align: left;
}

.row.heading {
  font-weight: bold;
  border-bottom: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  font-size: 16px;
}

.hash {
  margin-top: 5px;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.divider {
  border-bottom: solid 5px rgba(255, 255, 255, 0.5);
  margin: 50px 0;
}

.release-notes {
  fill: rgba(29, 131, 210, 0.8);
  vertical-align: middle;
}

form.delete {
  display: inline;
}

button.delete {
  background: none;
  border: none;
  cursor: pointer;
  vertical-align: middle;
  padding: 0;
}

.trash-can {
  fill: rgba(220, 8, 8, 0.8);
}

#blackout,
#confirm-delete {
  display: none;
}

#blackout.open,
#confirm-delete.open {
  display: block;
}

#blackout {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(16, 15, 15, 0.8);
}

#confirm-delete {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #161926;
  border: solid 1px #fff;
  border-radius: 8px;
  padding: 50px;
}

div.dialog-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

#file-upload.dropzone {
  border: solid 1px #fff;
  border-radius: 8px;
}

#file-upload.dropzone p {
  color: rgb(32, 48, 69);
}