/* Overview Panel Specific Styles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stats-grid .stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stat-info h3 {
  margin: 0 0 4px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-info p {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

/* Overview Recent Feed Items */
.feed-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feed-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.feed-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feed-item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.feed-item-handler {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
}

.feed-item-handler:hover {
  background: rgba(99, 102, 241, 0.15);
}

.feed-item-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.feed-item-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.field-pair {
  font-size: 0.85rem;
}

.field-label {
  color: var(--text-secondary);
  font-weight: 500;
  margin-right: 4px;
}

/* Empty State Styling */
.empty-state {
  text-align: center;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  margin: 40px auto;
}

.empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.empty-state h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.empty-state p {
  margin: 0 0 24px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
