.module-stack .module.row:first-child {
  border-radius: 10px 10px 0px 0px;
}
.module-stack .module.row {
  height: auto;
  width: calc(100% - 10px);
  margin-right: 0px;
  margin-left: 0px;
  padding: 5px;
  transition: 0.15s;
  cursor: pointer;
  border-bottom: 1px solid lightgrey;
}
.module-stack .module.row.expand {
  background-color: rgb(232, 232, 232);
}
.module-stack .module.row:hover {
  /* background-color: lightsteelblue; */
}
.module-stack .module.row .module-header {
  width: 100%;
  height: 100%;
}
.module-stack .module.row .module-header .row {
  margin-left: 0px;
  margin-right: 0px;
}
.module-stack .module.row .module-header .module-title-wrapper {
  height: 100%;
  text-align: left;
  padding: 0px;
  /* border: 1px solid black; */
}
.module-stack .module.row .module-header .module-title-wrapper .module-name {
  font-size: 20px;
  font-weight: bold;
}
.module-stack .module.row .module-header .module-title-wrapper .module-desc {
  margin-bottom: 0px;
}

.module-stack .module.row .module-header .module-state-wrapper {
  height: 100%;
  padding: 0px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
}
.module-stack .module.row .module-header .module-state-wrapper .icon {
  font-size: 30px;
}
.module-stack .module.row .module-body {
  width: 100%;
  height: auto;
  overflow: auto;
}
.module-stack .module.row .module-body .function-wrapper {
  border-radius: 7.5px;
  margin: 10px;
  padding: 5px;
  box-shadow: 0 0px 5px 2px lightgrey;
  text-align: left;
  background-color: whitesmoke;
  cursor: default;
}
.module-stack .module.row .module-body .function-wrapper p {
  max-width: 100%;
  margin-bottom: 0px;
}