

/*EDITOR DE CODIGO VISUAL STUDIO CODE*/

.editor {
  background: #1e1e1e;
  border-radius: 8px;
  overflow: visible;
  margin-top: 20px;
}

.editor-code {
  flex: 1;
  min-height: 0;
  position: relative;
}

.topbar {
  height: 40px;
  background: #252526;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: white;
  font-size: 14px;
}

/* =======================
   WORKSPACE
======================= */
.workspace {
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* =======================
   EDITORS
======================= */
.editors {
  display: flex;
  height: 65%;
  min-height: 180px;
  overflow: visible;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  position: relative;
  overflow: visible;
}

.title {
  height: 30px;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 13px;
  color: white;
}

.copy-btn {
  background: none;
  border: none;
  color: #007acc;
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: all 0.25s ease;
}

.copy-btn:hover {
  background: rgba(0, 122, 204, 0.2);
  color: #4fc3f7;
}

.copy-btn.copied {
  color: #4ec9b0;
}

.editor {
  flex: 1;
  min-height: 0;
}

/* =======================
   OUTPUT
======================= */
.output {
  flex: 1;
  display: flex;
  background: #fff;
  min-height: 0;
  overflow: hidden;
}

iframe {
  flex: 1;
  border: none;
  background: white;
  min-width: 200px;
}

.console {
  width: 260px;
  background: #111;
  color: #0f0;
  font-family: monospace;
  font-size: 13px;
  padding: 8px;
  overflow-y: auto;
  border-left: 1px solid #333;
  min-width: 180px;
}

/* =======================
   RESIZERS
======================= */
.resizer-vertical {
  width: 5px;
  cursor: col-resize;
  background: #333;
}

.resizer-horizontal {
  height: 5px;
  cursor: row-resize;
  background: #333;
}

.resizer-vertical:hover,
.resizer-horizontal:hover {
  background: #007acc;
}

.resizer-vertical {
  width: 5px;
  cursor: col-resize;
  background: #007acc;
}

.resizer-horizontal {
  height: 5px;
  cursor: row-resize;
  background: #007acc;
}

.column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.editors {
  display: flex;
  flex: 1;
  overflow: visible;
}

.output {
  display: flex;
  height: 200px;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  z-index: 1000;
}

.toast-notification.show {
  opacity: 1;
}

.video{
  
  display: flex;
  justify-content: center;
}

video{
width: 800px;
}
/* ===================================
   MONACO EDITOR - SUGGESTIONS WIDGET
=================================== */

.monaco-editor .suggest-widget {
  background-color: #1e1e1e !important;
  border: 1px solid #464646 !important;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.9) !important;
  z-index: 1000 !important;
  min-width: 500px !important;
  max-width: 700px !important;
}

.monaco-editor .suggest-widget .monaco-list {
  max-height: 400px !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row {
  padding: 6px 10px !important;
  height: auto !important;
  min-height: 28px !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused {
  background-color: #264de4 !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row:hover {
  background-color: #2d2d2d !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label {
  color: #e0e0e0 !important;
  font-size: 13px !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label .label-name {
  color: #4fc3f7 !important;
  font-weight: 600 !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label .label-details {
  color: #a0a0a0 !important;
  font-size: 12px !important;
  opacity: 0.8 !important;
}

.monaco-editor .suggest-widget .details {
  background-color: #252526 !important;
  border-left: 1px solid #464646 !important;
  padding: 10px !important;
  width: 300px !important;
}

.monaco-editor .suggest-widget .details .monaco-scrollable-element {
  max-height: 400px !important;
}

.monaco-editor .suggest-widget .monaco-scrollable-element {
  overflow: visible !important;
}

.monaco-editor .suggest-widget .details > .docs {
  color: #e0e0e0 !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

.monaco-editor .suggest-widget .monaco-list-row .parameter {
  color: #ce9178 !important;
}

.monaco-editor .suggest-widget .monaco-list-row .type {
  color: #4ec9b0 !important;
  margin-left: 10px !important;
}

.monaco-editor .suggest-widget.top {
  bottom: auto !important;
  top: auto !important;
}

.monaco-editor .suggest-widget.bottom {
  top: auto !important;
  bottom: 0 !important;
}