/* @import '@jupyterlab/codemirror/style/base.css';
@import 'codemirror/lib/codemirror.css'; */
@import 'thebe-core/dist/lib/thebe-core.css';
@import './activate.css';
@import './status.css';

.CodeMirror {
  height: auto;
  border: 1px solid grey;
}

.thebelab-cell,
.thebe-cell,
.thebe-cell > div {
  margin-top: 8px;
  margin-bottom: 8px;
}
.thebe-cell:focus-within,
.thebe:focus-within {
  border-color: green;
}

/* no prompts */
.jp-OutputPrompt {
  display: none;
}

.thebelab-busy,
.thebe-busy {
  display: none;
  vertical-align: middle;
  padding-left: 2px;
}

.thebelab-busy-spinner,
.thebe-busy-spinner {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 13px;
  height: 13px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* 
ul.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 100%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
}

li.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
} */
