#dev-command-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  z-index: 10000 !important;
  background: rgba(40, 44, 52, 0.95) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid #ff6b35 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  display: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  transform: none !important;
}
#dev-command-bar.show {
  display: block !important;
}
#dev-command-bar .command-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
#dev-command-bar .command-prompt {
  color: #ff6b35 !important;
  font-weight: bold;
  font-family: monospace;
  flex-shrink: 0;
}
#dev-command-bar .command-help {
  color: #888 !important;
  font-size: 12px;
  flex-shrink: 0;
}

#dev-command-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-family: monospace !important;
  font-size: 16px !important;
  outline: none !important;
  padding: 8px 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
  box-sizing: border-box !important;
}
#dev-command-input::placeholder {
  color: #888 !important;
}
#dev-command-input:focus {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.dev-form-message {
  position: fixed !important;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  max-width: 300px;
}

.dev-command-message {
  position: fixed !important;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
}

#dev-cancel-zone {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 0.5rem;
  border-radius: 4px;
  background: #e74c3c;
  border: 1px solid #c0392b;
  color: white;
  cursor: pointer;
  display: none;
  font-size: 0.9rem;
  z-index: 9998;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
