* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
}

.header-section {
  height: 40px;
  max-height: 40px;
  background: linear-gradient(40deg, #722df9, #7431f9);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
}

.import-section {
  display: flex;
}

.info-icon {
  width: 30px;
  height: 30px;
  color: white;
}

.info-icon:hover {
  color: #3b1685;
}

.about-section {
  position: relative;
}

.about-section .about-info {
  position: absolute;
  margin-top: 15px;
  margin-right: 3px;
  width: 220px;
  right: -10px;
  z-index: 2;
  background: linear-gradient(40deg, #722df9, #7431f9);
  opacity: 90%;
  padding: 10px;
  border-radius: 10px;
  color: white;
}

.about-info img {
  height: 220px;
  border-radius: 10px;
}

.about-info p {
  margin: 2px;
}

.about-info .info {
  display: flex;
  align-items: center;
}

.about-info svg {
  height: 15px;
  margin-right: 10px;
}

.file-chooser {
  outline: 1px solid black;
  width: 500px;
  background-color: white;
  border-radius: 5px;
}

.file-chooser::-webkit-file-upload-button {
  /* visibility: hidden; */
  padding: 5px 10px !important;
  background-color: lightgray;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: none;
  outline: transparent;
  height: 30px;
}

.report-section {
  top: 40px;
  padding: 10px;
}

.report-section iframe {
  width: calc(100vw - 40px);
  overflow: hidden;
  height: calc(100vh - 100px);
  border: 1px solid gray;
}

.btn {
  padding: 5px 10px !important;
  background-color: lightgray;
  border-radius: 5px;
  border: none;
  outline: transparent;
  height: 30px;
  margin-left: 10px;
}

.hidden {
  display: none;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(58, 89, 128, 0.2); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  justify-content: center;
  align-items: center;
}

#overlay .overlay-content{
  padding: 50px;
  background-color: white;
  border-radius: 5px;
}

#overlay img {
  display:block;
  margin: auto;
}


#overlay h4 {
  text-align:center;
  margin-top: 5px;
  margin-bottom: 20px;
}

