/* Styles for ProtoScript Workbench */
.content-page {
    background-color: white;
    margin-left: 0px;
}
#sidebar {
    display: none;
}
#divPageTitle {
    display: none;
}

.CodeMirror {
    border: 1px solid #eee;
    height: auto;
}
.loading {
    position: relative;
}
.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    margin-left: -16px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
    z-index: 9999;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.found-text-marker {
    background-color: cornflowerblue;
}
.debug-break-marker {
    background-color: yellow;
}
.error-marker {
  color: black;
  width: 12px !important;
  height: 12px;
  background-color: #ff4d4d;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.error-marker .error-message {
  display: none;
  position: absolute;
  white-space: pre-wrap;
  background-color: #fff;
  color: #212529;
  border: 1px solid #999;
  padding: 10px 16px;
  left: 50px;
  top: -1.5em;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 1;
  border-radius: 4px;
  max-width: none;
  width: 500px;
  min-width: fit-content;
}
.error-marker:hover .error-message {
  display: block;
}
.breakpoints { width: .8em; }
.breakpoint { color: #822; font-size: x-large; padding-top: 0px; margin-top: -5px; }

.code-area {
    width: 100%;
    min-height: 600px;
    white-space: pre;
}
.symbol-container {
    z-index: 100;
    height: 80vh;
    overflow: scroll;
}
