/* CSS Document */
#container_grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 0 1fr;
  grid-template-rows: 0 auto;
  gap: 0;
  height: 100vh;
  width: 100%;
  grid-template-areas: "header header"        "side contents"; }

#side, #header, #search, .title {
  display: none !important; }

#main {
  width: 100%;
  padding: 0; }

.list_table {
  height: auto !important;
  box-shadow: none !important;
  border-left: 1px solid #ddd; }

.sticky_table_wrapper {
  width: 100%; }

body {
  background: #fff; }
