/* EPA Guide Pages Styles - Used by step-by-step guide pages */

.step-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.step-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.step-number {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #0da55e, #059669);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 165, 94, 0.3);
}

.screenshot-placeholder {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  color: #94a3b8;
  transition: all 0.3s ease;
}
.screenshot-placeholder img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.screenshot-placeholder:has(img) {
  border: 1px solid #e2e8f0;
  background: white;
}

.tip-box {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
}
