body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    height: 40px;
    display: flex;
}

.header__btn {
    cursor: pointer;
    width: 130px;
    border: none;
    font-size: larger;
    font-weight: bolder;
    align-items: center;
    background-color: white;
    height: 100%;
}

.header__btn:hover {
    background-color: beige;
}

.run-btn {
    cursor: pointer;
    border-radius: 4px;
    width: 130px;
    border: none;
    background-color: rgb(34, 147, 34);
    color: white;
    font-size: larger;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 5px;
}

.run-btn:hover {
    background-color: rgb(49, 210, 49);
}

.loader {
    border: 0.25em solid rgb(65, 53, 53);
    border-top: 0.25em solid #aca0a0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    animation: spin 2s linear infinite;
}

.run-btn--cancel {
    background-color: rgb(192, 54, 54);
}

.run-btn--cancel:hover {
    background-color: rgb(237, 113, 113);
}

.header__group {
    display: flex;
    flex-direction: row;
}

.u-fill {
    flex: 1;
}

.u-hidden {
    display: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.pane {
    height: 100%;
    overflow: auto;
    width: 50%;
}

.splitter {
    width: 5px;
    background: #ccc;
    cursor: col-resize;
}

#js-editor {
    font-size: 18px;
}

#js-entries {
    font-size: 24px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 350px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}