/* Dashboard Styles */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-header h1 {
  font-size: 1.5rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.dashboard-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.dashboard-tab {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.dashboard-tab:hover {
  color: var(--text-primary);
}

.dashboard-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Order Status Timeline */
.status-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 1rem 0;
}

.status-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.status-step::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.status-step:first-child::before {
  left: 50%;
}

.status-step:last-child::before {
  right: 50%;
}

.status-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
}

.status-step.completed .status-dot {
  background: var(--success);
  border-color: var(--success);
  color: var(--bg-primary);
}

.status-step.current .status-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
}

.status-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.status-step.completed .status-label,
.status-step.current .status-label {
  color: var(--text-primary);
  font-weight: 500;
}

/* Printer Card */
.printer-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.printer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.printer-info {
  flex: 1;
}

.printer-info h3 {
  margin-bottom: 0.25rem;
}

.printer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
