.deck-profile-pic {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: #efefef;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  margin-right: .5em;

  min-width: 38px;
}

/* Feed Deck Styles */
.deck-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  font-weight: bold;
  margin-left: 8px;
  vertical-align: middle;
}

.feed-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.deck-summary {
  color: #666;
  font-style: italic;
  margin-top: 4px;
}

.deck-summary small {
  font-size: 0.9em;
}

.feed-info-box {
  background: #f0f4ff;
  border: 1px solid #d0d8f0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
}

.feed-info-box p {
  margin: 0;
  color: #4a5568;
}

/* Form Styles */
.deck-feed-setting {
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.deck-feed-setting label {
  font-size: 1.1em;
  cursor: pointer;
}

.help-text {
  color: #666;
  font-size: 0.9em;
  margin-top: 8px;
  margin-left: 24px;
  line-height: 1.5;
}

.help-text em {
  color: #999;
}

/* Noun Deck Settings */
.deck-noun-setting {
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.deck-noun-setting label {
  font-size: 1.1em;
  cursor: pointer;
}

.deck-noun-setting .help-text {
  color: #666;
  font-size: 0.9em;
  margin-top: 8px;
  margin-left: 24px;
  line-height: 1.5;
}

/* Dashboard Feed Management Styles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.stat-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card.pending {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, white 100%);
}

.stat-card.completed {
  border-color: #10b981;
  background: linear-gradient(135deg, #ecfdf5 0%, white 100%);
}

.stat-card.rejected {
  border-color: #9ca3af;
  background: linear-gradient(135deg, #f3f4f6 0%, white 100%);
}

.stat-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #1e293b;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.9em;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.action-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.action-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #1e293b;
}

.action-card p {
  color: #64748b;
  margin-bottom: 16px;
}

.action-card .status-text {
  font-size: 0.85em;
  color: #94a3b8;
}

.inline-form {
  margin-top: 12px;
}

.inline-form .form-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.inline-form label {
  font-size: 0.9em;
  color: #64748b;
}

.badge-feed {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  margin-left: 8px;
}

.badge-noun {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  margin-left: 8px;
}

.status-badge-inline {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85em;
  margin-right: 8px;
}

.status-badge-inline.pending {
  background: #fef3c7;
  color: #92400e;
}

.status-badge-inline.completed {
  background: #d1fae5;
  color: #065f46;
}

.status-badge-inline.rejected {
  background: #e5e7eb;
  color: #4b5563;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.data-table th,
.data-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.data-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
}

.data-table tr:hover {
  background: #f8fafc;
}

.deck-tag {
  background: #e0e7ff;
  color: #4338ca;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}

.confidence-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 500;
}

.confidence-badge.high {
  background: #d1fae5;
  color: #065f46;
}

.confidence-badge.medium {
  background: #fef3c7;
  color: #92400e;
}

.confidence-badge.low {
  background: #fee2e2;
  color: #991b1b;
}

.feed-deck-row {
  background: #f5f3ff;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

.status-dot.green {
  background: #10b981;
}

.status-dot.gray {
  background: #cbd5e1;
}

.empty-state {
  text-align: center;
  color: #94a3b8;
  padding: 40px;
  font-style: italic;
}

.btn-small {
  padding: 4px 8px;
  font-size: 0.85em;
}

.processing-list {
  overflow-x: auto;
}