/* Custom styling specific to Bulk Document Retry Component */

#retryConsoleLogs {
  background-color: #0f172a;
  color: #e2e8f0;
  border-radius: 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  padding: 15px;
  height: 200px;
  overflow-y: auto;
  border: 1px solid #334155;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

#retryConsoleLogs::-webkit-scrollbar {
  width: 8px;
}

#retryConsoleLogs::-webkit-scrollbar-track {
  background: #1e293b;
  border-radius: 0 6px 6px 0;
}

#retryConsoleLogs::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 4px;
}

#retryConsoleLogs::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

.retry-progress-section {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 15px;
}

#btnStartRetry {
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#btnFindFailed {
  transition: opacity 0.2s ease;
}

#btnFindFailed:hover {
  opacity: 0.9;
}

.failed-files-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.failed-files-table th {
  background-color: #f1f5f9;
  color: hsl(var(--primary));
  font-weight: 600;
  padding: 10px 12px;
  border-bottom: 1px solid hsl(var(--border));
}

.failed-files-table td {
  padding: 10px 12px;
  border-bottom: 1px solid hsl(var(--border));
  vertical-align: middle;
  word-break: break-all;
}

.failed-files-table tr:hover {
  background-color: #f8fafc;
}
