.webappgencontainer {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* or any fixed height */
}


.webappgencontent {
  flex: 1 0 auto;
  /* Fill the remaining height */
}


.fileExplorerTable {
  border-collapse: collapse;
  white-space: nowrap;
}

.fileExplorerTable tr {
  border-bottom: 0px;
}

.fileExplorerTable thead td {
  background-color: lightgray;
  font-weight: bold;
}

.fileExplorerTable td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  height: 28px;
}

.fileExplorerName {
  padding-left: calc(var(--indent, 0) * 20px);
}

.fileExplorerName img {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.fileExplorerSelected {
  background-color: #e0e0e0;
}

.fileExplorerActions {
  position: fixed;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px #0003;
  z-index: 1000;
  min-width: 120px;
}

.fileExplorerActions div {
  padding: 8px 12px;
  cursor: pointer;
}

.fileExplorerActions div:hover {
  background: #eee;
}

table.baselineTable {
  border-collapse: collapse;
  width: 100%;
  user-select: none;
}

table.baselineTable :is(th, td) {
  border: 1px solid #ccc;
  min-height: 50px;
  text-align: center;
  vertical-align: top;
}

.hour {
  width: 80px;
  background: #f0f0f0;
  font-weight: bold;
}

.droppable {
  min-height: 50px;
  background: #fff;
  position: relative;
}

.selected {
  background-color: #c8e6c9 !important;
}

.event {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: lightblue;
  z-index: 1;
  align-items: center;
  display: flex;
  justify-content: center;
}