.Overlay {
  background-color: rgba(35, 26, 38, 0.88);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  overflow-y: auto;
}

.Content {
  margin: auto;
  position: relative;
  border-radius: 10px;
  outline: none;
  padding: 0;
}

.Header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  padding: 10px;
  width: 100%;
  color: white;
}

.TitleWrapper {
  display: flex;
  align-items: center;
}

.ButtonsWrapper {
  display: flex;
  align-items: center;
}

.Title {
  font-size: 16px;
  font-weight: bold;
  max-width: 80vh;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.DownloadIcon {
  padding-top: 2px;
  height: 20px;
  width: 20px;
  fill: white;
  cursor: pointer;
}
.CloseIcon {
  height: 15px;
  width: 15px;
  fill: white;
  cursor: pointer;
}
.DownloadIconButton,
.CloseIconButton {
  box-sizing: content-box;
  padding: 10px;
  width: 15px;
  border: none;
  border-radius: 2px;
  margin: 0;
}

.Body {
  padding-right: 20px;
  padding-left: 20px;
}
