/* Custom styles */
.fade-in { animation: fadeIn 0.2s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
button:disabled { opacity: 0.5; cursor: not-allowed; }
