.btn-group-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-group-actions form {
  margin: 0;
}

.table td .btn-group-actions {
  justify-content: flex-start;
}

.thread-dump-content {
  background-color: #f8f9fa;
  padding: 1rem;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
  max-height: 600px;
  overflow-y: auto;
  border-radius: 0 0 0.25rem 0.25rem;
}

.thread-dump-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.thread-dump-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.thread-dump-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.thread-dump-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.search-container {
  margin-top: 0.5rem;
}

.search-info {
  font-size: 0.875rem;
  color: #6c757d;
}

.highlight {
  background-color: #fff3cd;
  padding: 2px 0;
  border-radius: 2px;
}

.current-highlight {
  background-color: #ffc107;
}

.input-group .form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.match-counter {
  color: #0d6efd;
  font-weight: 500;
}

.input-group .btn {
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group .btn[title] {
  position: relative;
}

.input-group .btn[title]:hover:after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
}