.terminal-scrollable-container {
  height: 500px;
  overflow-y: auto;
  background: #1e1e1e;
  color: #d4d4d4;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
}

html.dark .terminal-scrollable-container {
  background: #0d0d0d;
  color: #e5e5e5;
}

.terminal-content {
  padding: 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.terminal-line {
  margin-bottom: 2px;
}

.terminal-line-timestamp {
  color: #858585;
  margin-right: 8px;
  font-size: 12px;
}

.terminal-line-success {
  color: #4ec9b0;
}

.terminal-line-error {
  color: #f48771;
}

.terminal-line-warning {
  color: #dcdcaa;
}

.terminal-line-info {
  color: #569cd6;
}

.bordered-box {
  border: 1px solid #E4E4E7;;
  border-radius: 4px;
}

html.dark .bordered-box {
  border-color: #27272A;
}

.badge-process-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Running Badge */
.badge-process-running {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

html.dark .badge-process-running {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Success Badge */
.badge-process-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

html.dark .badge-process-success {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Failed Badge */
.badge-process-failed {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

html.dark .badge-process-failed {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Cancelled Badge */
.badge-process-cancelled {
  background: #fed7aa;
  color: #9a3412;
  border: 1px solid #fdba74;
}

html.dark .badge-process-cancelled {
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Status Dot Animations */
.status-dot-running {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse-blue 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-blue {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Process Card Footer */
.card-footer .process-info {
  font-size: 13px;
}

.card-footer .process-actions {
  display: flex;
  gap: 8px;
}

/* Scrollbar Styling */
.terminal-scrollable-container::-webkit-scrollbar {
  width: 8px;
}

.terminal-scrollable-container::-webkit-scrollbar-track {
  background: #252525;
}

.terminal-scrollable-container::-webkit-scrollbar-thumb {
  background: #424242;
  border-radius: 4px;
}

.terminal-scrollable-container::-webkit-scrollbar-thumb:hover {
  background: #4f4f4f;
}

html.dark .terminal-scrollable-container::-webkit-scrollbar-track {
  background: #18181B;
}

html.dark .terminal-scrollable-container::-webkit-scrollbar-thumb {
  background: #3F3F46;
}

html.dark .terminal-scrollable-container::-webkit-scrollbar-thumb:hover {
  background: #52525B;
}
