/* oscar-module-editor.css — fragment.oscar.module-editor.001 */
.oscar-module-editor h3 {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: #b8e0a8;
}
.oscar-module-editor .field { margin-bottom: 10px; }
.oscar-module-editor .field label {
  display: block;
  font-size: 10px;
  opacity: .7;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.oscar-module-editor .field input,
.oscar-module-editor .field select,
.oscar-module-editor .field textarea {
  width: 100%;
  background: rgba(0, 0, 0, .3);
  color: #e8e8e0;
  border: 1px solid rgba(120, 160, 120, .3);
  border-radius: 4px;
  padding: 6px 8px;
  font: 12px ui-monospace, Menlo, monospace;
  box-sizing: border-box;
}
.oscar-module-editor .field input:focus,
.oscar-module-editor .field select:focus,
.oscar-module-editor .field textarea:focus {
  outline: none;
  border-color: rgba(180, 220, 180, .6);
  background: rgba(0, 0, 0, .4);
}
.oscar-module-editor .field .hint {
  font-size: 9px;
  opacity: .5;
  margin-top: 2px;
  font-style: italic;
}
.oscar-module-editor .save-btn {
  width: 100%;
  background: rgba(60, 140, 200, .95);
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 6px;
  font: 600 12px ui-monospace, Menlo, monospace;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: .5px;
}
.oscar-module-editor .save-btn:hover { background: rgba(80, 160, 220, .95); }
.oscar-module-editor .save-btn.saved { background: rgba(60, 160, 80, .95); }
.oscar-module-editor .empty {
  padding: 20px;
  text-align: center;
  opacity: .6;
  font-size: 11px;
}
.oscar-module-editor .meta {
  padding: 6px 14px;
  background: rgba(0, 0, 0, .2);
  border-bottom: 1px solid rgba(120, 160, 120, .1);
  font-size: 10px;
  opacity: .7;
  flex-shrink: 0;
}
.oscar-module-editor .meta code {
  color: #b8e0a8;
  background: rgba(0, 0, 0, .3);
  padding: 1px 4px;
  border-radius: 2px;
}
