* {
  margin: 0;
  padding: 0;
}

iframe {
  border-width: 0px !important;
}

#container {
  position: absolute;
  top: 88px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 90px);
  overflow: hidden;
  font-size: 14px;
}

#input-container,
#output-container {
  overflow: auto;
}

#editor,
#iframe-result {
  width: 100%;
  height: 100%;
}

#input-container {
  position: relative;
}

#input-wrapper {
  overflow: auto;
  position: relative;
  height: 100%;
  width: 100%;
}

#output-container {
  position: relative;
}

#output-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
}

#iframe-container {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

#iframe-result {
  width: 100%;
  height: 100%;
  border: none;
}

/* Layout Containers */
.navbar-editor {
  display: flex;
  border-bottom: 2px solid #4b5563;
  padding: 0.5rem;
  gap: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #475569;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.icon-button:hover {
  background-color: #334155;
}
.icon-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #cbd5e1;
}

/* Tabs */
.tab .active {
  background: #64748b;
}

#tab-bar {
  display: flex;
  background-color: #111827;
  color: #d1d5db;
}

.tab-button {
  background-color: #334155;
  padding: 0.5rem 1rem;
  min-width: 5rem;
  font-size: 1rem;
  border: none;
  margin-inline-end: 1px;
  color: #fff;
  cursor: pointer;
}
.tab-button:hover {
  background-color: #1e293b;
}

.console-button {
  display: none;
}

@media (min-width: 768px) {
  .console-button {
    display: block;
    margin-inline-start: 1px;
  }
}
/* Dragbar */
#dragbar {
  position: relative;
  z-index: 20;
  background-color: #111827;
}

/* Shield */
#shield {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
}

/* Console */
#console-header {
  background-color: #0c0c0c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  color: #d1d5db;
}

#console {
  height: 60%;
  display: none;
}
#console-btn {
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  background-color: #d1d5db;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  cursor: pointer;
}
#console-btn:hover {
  background-color: #4ade80;
}
#console-body {
  background-color: #1e1e2e;
  height: calc(100% - 36px);
  overflow: auto;
}
#console-line {
  padding: 0.25rem;
  background-color: #374151;
  color: white;
}

#console-output {
  white-space: pre-wrap;
  font-family: monospace;
}

/*# sourceMappingURL=editor.css.map */
