* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}

body {
  background-color: #f5f5f5;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  padding: 1rem;
}

.main-content-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 900px;
  background: #fff;
  padding: 3rem;
  overflow-x: hidden;
}

.label {
  background: #e0e0e0;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: monospace;
  font-size: 0.9em;
}

.editor-box {
  width: 100%;
  min-height: 150px;
  margin-bottom: 1rem;
}

.monaco-editor {
  padding: 20px 0px;
}

.output {
  padding: 1rem;
  background: #fafafa;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.5rem;
  word-wrap: break-word;
}

.result-status-container {
  position: relative;
  z-index: 10000;
}

.result-status-label {
  position: absolute;
  bottom: 0px;
  right: 20px;
  padding: 5px;
  border-radius: 10px;
  font-family: monospace;
  font-size: 0.9em;
  margin: 0;
}


.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 0.5rem;
  }

  #run-button {
    width: 100%;
    text-align: center;
  }
}