/* ============================================================
   SVG Cleaner Styling - Scenic IT Solutions
   ============================================================ */

.svg-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .svg-clean-grid {
    grid-template-columns: 1fr;
  }
}

.svg-stage-preview {
  min-height: 180px;
  background: #0d0d12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 20px;
  background-image: repeating-conic-gradient(#181824 0% 25%, #10101a 0% 50%) 50% / 20px 20px;
}

.svg-stage-preview svg {
  max-width: 100%;
  max-height: 140px;
}
