/* public/style.css */
#editor {
  width: 100%;
  height: calc(100% - 48px);
  margin: 0;
  padding: 0;
}

#menu {
  z-index: 9999;
  height: 40px;
  padding-bottom: 8px;
}

.line {
  background-color: #ffa07a;
  width: 24px;
  height: 4px;
  margin-top: 2px;
  margin-bottom: 2px;
}

#file-button {
  cursor: pointer;
  width: 40px;
  height: 32px;
  padding-top: 12px;
  padding-left: 8px;
}

#run-button {
  text-align: center;
  color: #fff;
  border-radius: 8px;
  align-content:  center;
  height: 36px;
  padding-left: 16px;
  padding-right: 16px;
}

.enabled-run-button {
  cursor: pointer;
  background-color: #1e90ff;
}

.disabled-run-button {
  cursor: default;
  background-color: #d3d3d3;
}

#help-button {
  cursor: pointer;
  text-align: center;
  color: #fff;
  background-color: pink;
  border-radius: 16px;
  align-content:  center;
  width: 32px;
  height: 32px;
  font-weight: bold;
}

#file-dialog {
  position: absolute;
  z-index: 99999;
  background-color: #fffffff2;
  width: 100%;
  height: calc(100% - 48px);
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}

#file-dialog-back-button {
  cursor: pointer;
  text-align: center;
  color: #fff;
  background-color: #ffa07a;
  border-radius: 8px;
  align-content:  center;
  width: 40px;
  height: 40px;
  margin-top: 4px;
  margin-left: 4px;
  font-size: x-large;
}

#file-dialog-add-button {
  cursor: pointer;
  text-align: center;
  color: #000;
  border: 1px solid #000;
  border-radius: 8px;
  align-content:  center;
  width: 40px;
  height: 40px;
  margin: 16px;
  font-size: x-large;
}

#file-dialog-file-list {
  overflow-y: auto;
  padding-left: 8px;
}

.file-dialog-file-item {
  cursor: pointer;
}

#runtime-dialog {
  position: absolute;
  z-index: 99999;
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}

#runtime-dialog-close-button {
  cursor: pointer;
  text-align: center;
  color: #000;
  background-color: orange;
  border-radius: 8px;
  align-content:  center;
  height: 36px;
  margin-top: 6px;
  padding-left: 16px;
  padding-right: 16px;
}

#runtime-output-area {
  color: #fff;
  overflow-y: scroll;
  background-color: #000;
  width: 100%;
  min-height: 200px;
  font-family: monospace;
  font-size: 14px;
}

#runtime-error-area {
  color: red;
  width: 100%;
  padding: 8px;
  font-family: monospace;
  font-size: 14px;
}

#runtime-input-field {
  width: 60%;
  margin: 8px;
  padding: 8px;
  font-family: monospace;
  font-size: 14px;
}

#runtime-input-button {
  text-align: center;
  color: #fff;
  border-radius: 8px;
  align-content:  center;
  height: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.runtime-input-button-enabled {
  cursor: pointer;
  background-color: #20b2aa;
}

.runtime-input-button-disabled {
  cursor: default;
  background-color: #d3d3d3;
}

/* public/en/main.css */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
