.custom-console {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #1e1e1e;
  color: #ccc;
  font-family: Consolas, Menlo, monospace;
  font-size: 13px;
  line-height: 1.5;
  padding: 0.5rem 1rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #333;
  margin: 0.5rem 2rem 2rem 2rem;
  border-radius: 5px;
}

/* Title with tight spacing */
.custom-console h2 {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  margin: 0;
  padding: 4px 0;
  border-bottom: 1px solid #333;
}

/* Scrollable log output area */
#console-output {
  flex: 1;
  overflow-y: auto;
  padding-top: 0.5rem;
}

/* Console entries */
.console-entry {
  padding: 2px 0;
  border-left: 3px solid transparent;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: left;
}

.console-entry.log {
  color: #cccccc;
}

.console-entry.info {
  color: #33aaff;
}

.console-entry.warn {
  color: #f4c542;
  border-left-color: #f4c542;
  background-color: rgba(244, 197, 66, 0.1);
}

.console-entry.error {
  color: #ff4e4e;
  border-left-color: #ff4e4e;
  background-color: rgba(255, 78, 78, 0.1);
}

.console-entry.debug {
  color: #999999;
}
