<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.xlsx_container {
  font-size: 0px;
  min-width: 60vw;
}
.xlsx_tabs {
  width: 100%;
}
.xlsx_tables_background {
  overflow: hidden;
  width: 100%;
  height: 50vh;
  background-color: rgb(235, 235, 235);
  position: relative;
}
.xlsx_tables_background::before {
  content: '';
  display: block;
  width: 250px;
  height: 250px;
  background-image: url(../img/xlsx.png);
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 0;
  pointer-events: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-22deg);
  opacity: 0.05;
}
.xlsx_tables {
  overflow: scroll;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.xlsx_table {
  display: table;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
  position: relative;
}
.xlsx_row {
  display: table-row;
}
.xlsx_cell {
  display: table-cell;
  padding: 5px 8px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 13px;
  vertical-align: middle;
  box-sizing: border-box;
  color: rgb(40, 40, 40);
  font-family: Verdana, Arial;
  line-height: 1.5;
  border-left-color: transparent;
  border-top-color: transparent;
}
.xlsx_cell_number {
  background-color: rgb(249, 249, 249);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  border-left-color: white;
  border-top-color: white;
  text-align: center;
}</pre></body></html>