* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --txt: #fff;
  --back: #111;
}

body {
  background: var(--back);
  color: var(--txt);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100vw;
  height: 100vh;
}

.master {
  height: 100%;
  width: 100%;
}

.split {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
}
.split .panel {
  position: relative;
}
.split .panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  cursor: move;
  z-index: 99;
}
.split.column {
  flex-direction: column;
}
.split.column .panel {
  width: 100%;
}
.split.column > :first-child {
  border-bottom: 1px solid silver;
  height: var(--size) !important;
}
.split.column > :first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 30px;
  z-index: 99;
  cursor: row-resize;
}
.split.row {
  flex-direction: row;
}
.split.row .panel {
  height: 100%;
}
.split.row > :first-child {
  border-right: 1px solid silver;
  width: var(--size) !important;
}
.split.row > :first-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  width: 30px;
  z-index: 99;
  cursor: col-resize;
}
.split > :nth-child(2) {
  flex: 1;
}

.split .panel {
  display: flex;
  flex-direction: column;
}
.split .panel .panel-header {
  background-color: #2c2c2c;
  padding: 10px;
  border-bottom: 1px solid #444;
  font-weight: bold;
  color: #ddd;
}
.split .panel .panel-content {
  padding: 15px;
  flex: 1;
  overflow-y: auto;
}
.split .panel .panel-content h3 {
  margin-top: 0;
  color: #aaa;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}
.split .panel .panel-content p {
  margin: 10px 0;
  line-height: 1.5;
}
.split .panel .panel-content ul {
  padding-left: 20px;
}
.split .panel .panel-content ul li {
  margin: 5px 0;
}
.split .panel .panel-content .button-group {
  margin-top: 15px;
}
.split .panel .panel-content .button-group button {
  background: #444;
  color: white;
  border: none;
  padding: 8px 15px;
  margin-right: 10px;
  border-radius: 4px;
  cursor: pointer;
}
.split .panel .panel-content .button-group button:hover {
  background: #555;
}
.split .panel .panel-content .info-box {
  background: #222;
  padding: 10px;
  border-radius: 4px;
  border-left: 3px solid #666;
}

/*# sourceMappingURL=style.css.map */
