/* === LIGHT === */
[data-bs-theme="light"] .CodeMirror {
  background: #ffffff;
  color: #212529;
}
[data-bs-theme="light"] .CodeMirror-gutters {
  background: #f7f7f7;
}
[data-bs-theme="light"] .CodeMirror-linenumber {
  color: #555;
}

/* === GOLDEN === */
[data-bs-theme="golden"] .CodeMirror {
  background: #fff3e0;
  color: #4e342e;
}
[data-bs-theme="golden"] .CodeMirror-gutters {
  background: #ffe0b2;
}
[data-bs-theme="golden"] .CodeMirror-linenumber {
  color: #6d4c41;
}

/* === TWILIGHT === */
[data-bs-theme="twilight"] .CodeMirror {
  background: #152a3a;
  color: #d0d8f0;
}
[data-bs-theme="twilight"] .CodeMirror-gutters {
  background: #1b263b;
}
[data-bs-theme="twilight"] .CodeMirror-linenumber {
  color: #adb5bd;
}

/* === DARK === */
[data-bs-theme="dark"] .CodeMirror {
  background: #212529;
  color: #f8f9fa;
}
[data-bs-theme="dark"] .CodeMirror-gutters {
  background: #343a40;
}
[data-bs-theme="dark"] .CodeMirror-linenumber {
  color: #ced4da;
}
/* === LIGHT & GOLDEN === (ciemny kursor) */
[data-bs-theme="light"] .CodeMirror-cursor,
[data-bs-theme="golden"] .CodeMirror-cursor {
  border-left: 1px solid #000;
}

/* === TWILIGHT & DARK === (jasny kursor) */
[data-bs-theme="twilight"] .CodeMirror-cursor,
[data-bs-theme="dark"] .CodeMirror-cursor {
  border-left: 1px solid #f8f9fa; /* lub #fff dla mocniejszego kontrastu */
}

