.upload {
  background-color: white;
  width: 400px;
  height: 400px;
  text-align: center;
}

.uploadBox {
  height: 100%;
}
.upload .button {
  margin-bottom: 15px;
}

#input_csv {
  display: none;
}

#csv_status {
  color: var(--t-color);
}

#data {
  max-width: 100vw%;
  /* height: 100%; */
  background-color: white;
  --slot-width: 300px;
  position:relative;
}

.show_form img , .download_pdf img{
    width: 30px;
}

.show_form , .download_pdf{
    font-size: 16px;
    position: absolute;
    top: 25px;
    left: 30px;
    padding: 8px 10px;
    background-color: black !important;
}

.download_pdf{
    left: 100px;

}
.header {
  width: 800px;
  overflow-x: scroll;
}
.header .slot {
  min-width: 200px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-right: 1px solid gray;
  border-bottom: 1px solid gray;
}

#data {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  --border: 1px solid gray;
  --slot-width: 300px;
}

thead tr,tbody tr {
    display: flex;
}
thead td {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--p-font);
}
th,
td {
  padding:20px;
  width: var(--slot-width);
  display: inline-block;
  border-right: var(--border);
  border-bottom: var(--border);
  font-family: var(--p-font);
}

td img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 10px;
}

tbody tr:first-child{
    display: flex;
}
tbody tr td:first-child{
    display: flex;
    justify-content: center;
    align-items: center;
}
thead tr td:first-child, tbody tr td:first-child{
    width: 200px;
}

.gh {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(0, -50%);
    color: green;
}