html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}
.project::marker {
  content: "\1f4c1";
}

.project {
  cursor: default;
}

.active-project {
  font-weight: bold;
}

.active-file {
  background-color: #eef7ff;
}

ul {
  /* padding-left: 1.5rem; */
}
.project-file-list {
    padding-left: 0.5rem;
}
.project-file::marker {
  content: " \251c\2500 ";
}
.project-file {
  padding-left: 10px;
  font-weight: normal;
}
.project-file-end::marker {
  content: " \2514\2500 ";
}
.project-file-end {
  padding-left: 10px;
  font-weight: normal;
}


.context-menu {
  position: absolute;
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 5px 0;
  min-width: 150px;
  z-index: 1000;
  font-family: sans-serif;
  font-size: 12pt;
}
.context-menu-item {
  padding: 8px 12px;
  color: #333;
  cursor: default;
}
.context-menu-item:hover {
  background-color: #007bff;
  color: #fff;
}

.split {
  display: flex;
  overflow: hidden;
}
.gutter {
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: 50%;
}
.gutter.gutter-horizontal {
  cursor: col-resize;
  height: 100vh
}
.gutter.gutter-vertial {
  cursor: row-resize;
  width: 100vw
}

.editor-tabs {
  text-wrap: nowrap;
  padding-top: 1rem;
  padding-left: 2rem;
  border-bottom: 3px solid #888;
  margin-bottom: 6px;
  overflow-x: auto;
  overflow-y: visible;
}


.editor-tab, .editor-tab-active {
  margin-left: 8px;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  border-style: solid solid none solid;
  border-radius: 8px 8px 0 0;
  border-color: #eee;
  cursor: default;
  overflow-x: clip;
  overflow-y: visible;
  display: inline-block;
}

.editor-tab {
  border-color: #eee;
  background-color: #eee;
  /* border-bottom: 3px solid #888; */
  color: #111;
}

.editor-tab-active {
  border-color: #888 #888 #fff #888;
  /* border-bottom: 6px solid #fff; */
  background-color: #eef7ff;
  box-shadow: 3px 3px 0px 0px #888;
}

.modal-overlay {
  position: fixed;
  background-color: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.hidden {
  display: none !important;
}

.modal-content {
  background-color: #fff;
  padding: 1rem;
  border: 3px solid #888;
  border-radius: 8px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
  width: 90%;
  max-width: 400px;
  font-family: sans-serif;
  font-size: 12pt;}

.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
}

.form-group {
  display: flex;
  align-items: center;
}
.form-group label {
  width: 10rem;
  text-align: right;
  margin-right: 1rem;
}


