.xterm {
  cursor: text;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.xterm.focus, .xterm:focus {
  outline: none;
}

.xterm .xterm-helpers {
  z-index: 5;
  position: absolute;
  top: 0;
}

.xterm .xterm-helper-textarea {
  opacity: 0;
  z-index: -5;
  white-space: nowrap;
  resize: none;
  border: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: -9999em;
  overflow: hidden;
}

.xterm .composition-view {
  color: #fff;
  white-space: nowrap;
  z-index: 1;
  background: #000;
  display: none;
  position: absolute;
}

.xterm .composition-view.active {
  display: block;
}

.xterm .xterm-viewport {
  cursor: default;
  background-color: #000;
  position: absolute;
  inset: 0;
  overflow-y: scroll;
}

.xterm .xterm-screen {
  position: relative;
}

.xterm .xterm-screen canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.xterm .xterm-scroll-area {
  visibility: hidden;
}

.xterm-char-measure-element {
  visibility: hidden;
  line-height: normal;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -9999em;
}

.xterm.enable-mouse-events {
  cursor: default;
}

.xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer {
  cursor: pointer;
}

.xterm.column-select.focus {
  cursor: crosshair;
}

.xterm .xterm-accessibility:not(.debug), .xterm .xterm-message {
  z-index: 10;
  color: #0000;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.xterm .xterm-accessibility-tree:not(.debug) ::selection {
  color: #0000;
}

.xterm .xterm-accessibility-tree {
  -webkit-user-select: text;
  user-select: text;
  white-space: pre;
}

.xterm .live-region {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

.xterm-dim {
  opacity: 1 !important;
}

.xterm-underline-1 {
  text-decoration: underline;
}

.xterm-underline-2 {
  text-decoration: underline double;
}

.xterm-underline-3 {
  text-decoration: underline wavy;
}

.xterm-underline-4 {
  text-decoration: underline dotted;
}

.xterm-underline-5 {
  text-decoration: underline dashed;
}

.xterm-overline {
  text-decoration: overline;
}

.xterm-overline.xterm-underline-1 {
  text-decoration: underline overline;
}

.xterm-overline.xterm-underline-2 {
  text-decoration: overline double underline;
}

.xterm-overline.xterm-underline-3 {
  text-decoration: overline wavy underline;
}

.xterm-overline.xterm-underline-4 {
  text-decoration: overline dotted underline;
}

.xterm-overline.xterm-underline-5 {
  text-decoration: overline dashed underline;
}

.xterm-strikethrough {
  text-decoration: line-through;
}

.xterm-screen .xterm-decoration-container .xterm-decoration {
  z-index: 6;
  position: absolute;
}

.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
  z-index: 7;
}

.xterm-decoration-overview-ruler {
  z-index: 8;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.xterm-decoration-top {
  z-index: 2;
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

#app {
  overflow: hidden;
}

body {
  color: #ccc;
  background: #1e1e1e;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 13px;
}

.app {
  height: 100%;
  display: flex;
}

.task-panel {
  background: #252525;
  border-right: 1px solid #333;
  flex-direction: column;
  width: 250px;
  min-width: 250px;
  display: flex;
}

.task-panel-header {
  border-bottom: 1px solid #333;
  padding: 12px 16px;
}

.task-panel-header h2 {
  color: #eee;
  font-size: 14px;
  font-weight: 600;
}

.task-filters {
  gap: 4px;
  padding: 8px;
  display: flex;
}

.filter-btn {
  color: #888;
  cursor: pointer;
  background: none;
  border: 1px solid #444;
  border-radius: 3px;
  flex: 1;
  padding: 4px 0;
  font-family: inherit;
  font-size: 11px;
}

.filter-btn.active {
  color: #eee;
  background: #3a3a3a;
  border-color: #5a8;
}

.filter-btn:hover {
  background: #333;
}

.task-list {
  flex: 1;
  padding: 4px 0;
  overflow-y: auto;
}

.task-item {
  border-bottom: 1px solid #2a2a2a;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  display: flex;
}

.task-item:hover {
  background: #2a2a2a;
}

.task-info {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.task-title {
  color: #ddd;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  overflow: hidden;
}

.task-status {
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 10px;
}

.status-active {
  color: #5a8;
}

.status-done {
  color: #888;
}

.status-cancelled {
  color: #a55;
}

.task-actions {
  flex-shrink: 0;
  gap: 4px;
  display: flex;
}

.task-btn {
  color: #aaa;
  cursor: pointer;
  background: none;
  border: 1px solid #444;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-family: inherit;
  font-size: 12px;
  display: flex;
}

.task-btn:hover {
  color: #eee;
  background: #3a3a3a;
}

.task-empty {
  text-align: center;
  color: #666;
  padding: 24px 16px;
  font-size: 12px;
}

.task-error {
  color: #e88;
  text-align: center;
  padding: 8px 12px;
  font-size: 11px;
}

.task-create {
  border-top: 1px solid #333;
  gap: 4px;
  padding: 8px;
  display: flex;
}

.task-create input {
  color: #ddd;
  background: #1e1e1e;
  border: 1px solid #444;
  border-radius: 3px;
  outline: none;
  flex: 1;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 12px;
}

.task-create input:focus {
  border-color: #5a8;
}

.task-create button {
  color: #ddd;
  cursor: pointer;
  background: #3a3a3a;
  border: 1px solid #444;
  border-radius: 3px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 12px;
}

.task-create button:hover {
  background: #444;
}

.error-banner {
  color: #e88;
  cursor: pointer;
  background: #3a2020;
  border-bottom: 1px solid #633;
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 12px;
}

.main-area {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.terminal-tabs {
  background: #252525;
  border-bottom: 1px solid #333;
  flex-shrink: 0;
  align-items: center;
  height: 36px;
  display: flex;
  overflow-x: auto;
}

.tab {
  cursor: pointer;
  white-space: nowrap;
  border-right: 1px solid #333;
  align-items: center;
  gap: 8px;
  max-width: 200px;
  height: 100%;
  padding: 0 12px;
  display: flex;
}

.tab:hover {
  background: #2a2a2a;
}

.tab.active {
  background: #1e1e1e;
  border-bottom: 2px solid #5a8;
}

.tab-label {
  color: #aaa;
  text-overflow: ellipsis;
  font-size: 12px;
  overflow: hidden;
}

.tab.active .tab-label {
  color: #eee;
}

.tab-close {
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
}

.tab-close:hover {
  color: #eee;
}

.tab-new {
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  height: 100%;
  padding: 0 12px;
  font-family: inherit;
  font-size: 18px;
}

.tab-new:hover {
  color: #eee;
  background: #2a2a2a;
}

.tab-sidebar-toggle {
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  border-right: 1px solid #333;
  height: 100%;
  padding: 0 10px;
  font-family: inherit;
  font-size: 10px;
}

.tab-sidebar-toggle:hover {
  color: #eee;
  background: #2a2a2a;
}

.tab-fullscreen {
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  height: 100%;
  margin-left: auto;
  padding: 0 12px;
  font-family: inherit;
  font-size: 12px;
}

.tab-fullscreen:hover {
  color: #eee;
  background: #2a2a2a;
}

.terminal-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.terminal-pane {
  padding: 4px;
  position: absolute;
  inset: 0;
}

.terminal-pane .composition-view {
  border: 1px solid #ffff0080;
}

.arrow-keys {
  background: #252525;
  border-top: 1px solid #333;
  flex-shrink: 0;
  gap: 4px;
  padding: 4px;
  display: flex;
}

.arrow-key {
  color: #ccc;
  cursor: pointer;
  background: #3a3a3a;
  border: 1px solid #444;
  border-radius: 3px;
  flex: 1;
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
}

.arrow-key:active {
  background: #555;
}

.arrow-key-wide {
  flex: 1.5;
  font-size: 11px;
}

.terminal-empty {
  color: #666;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 100%;
  display: flex;
}

.terminal-empty button {
  color: #ddd;
  cursor: pointer;
  background: #3a3a3a;
  border: 1px solid #444;
  border-radius: 3px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
}

.terminal-empty button:hover {
  background: #444;
}

.login-page {
  background: #1e1e1e;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.login-form {
  flex-direction: column;
  gap: 12px;
  width: 280px;
  display: flex;
}

.login-title {
  color: #eee;
  text-align: center;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.login-error {
  color: #e88;
  text-align: center;
  background: #3a2020;
  border: 1px solid #633;
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 12px;
}

.login-input {
  color: #ddd;
  background: #252525;
  border: 1px solid #444;
  border-radius: 3px;
  outline: none;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
}

.login-input:focus {
  border-color: #5a8;
}

.login-button {
  color: #ddd;
  cursor: pointer;
  background: #3a3a3a;
  border: 1px solid #444;
  border-radius: 3px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
}

.login-button:hover {
  background: #444;
}

.login-button:disabled {
  opacity: .5;
  cursor: default;
}
/*# sourceMappingURL=frontend.9f367d21.css.map */
