/**
 * Docker Manager - Workspace Sticky Note Component Styles
 * (c) 2026 Wizardry and Steamworks
 */

 #c-note .container {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

#c-note .note-container {
  display: flex !important;
  flex: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  /* FIXED: Pure canary yellow backing locked explicitly across all themes */
  background: #fef5c1 !important;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
}

#note-textarea {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  resize: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 15px !important;
  box-sizing: border-box !important;
  font-family: "Courier New", Courier, monospace !important;
  font-size: 0.95rem !important;
  font-weight: bold !important;
  line-height: 1.5 !important;
  /* FIXED: Dense legal ink black text color forced for absolute contrast */
  color: #111111 !important;
  margin: 0 !important;
}

/* FIXED: Stripped away the light-theme background overrides to prevent variable layout shifting */
:root[data-theme="light"] #c-note .note-container {
  background: #fef5c1 !important;
}

:root[data-theme="light"] #note-textarea {
  color: #111111 !important;
}
