/* Selmark Generator — Custom CSS */
html { scroll-behavior: smooth; }
::selection { background: #E86E24; color: white; }

/* Multi-step form */
.step-content { display: none; animation: fadeIn 0.3s ease; }
.step-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #E86E24; border-radius: 3px; }

/* Color input fix */
input[type="color"] { padding: 2px; cursor: pointer; }
