body {
  font-family: monospace;
  font-size: 14px;
  margin: 1rem;
}

input,
textarea,
button {
  font-family: monospace;
  box-sizing: border-box;
  background-color: #eee;
  border: 1px solid transparent;
  &:focus {
    outline: none;
    border: 1px solid #ccc;
  }
}

button {
  cursor: pointer;
}

.menu {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: auto 1fr;
  input,
  textarea {
    width: 100%;
  }
  textarea {
    resize: vertical;
  }
  .actions {
    grid-column: 2;
    button {
      padding: 0.5rem 2rem 0.5rem 2rem;
    }
  }
}

.section {
  margin: 1rem 0 1rem 0;
  border-bottom: 2px solid #ccc;
  cursor: default;
}

.hook {
  margin-top: 1rem;
  .header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #ccc;
    .request {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      .method {
        font-weight: bold;
      }
    }
    .time {
      font-size: 0.5rem;
    }
  }
  .body {
    margin: 0;
    border: 1px solid #ccc;
    width: 100%;
    height: auto;
    min-height: 10em;
    resize: vertical;
  }
}
