/* animations.css */
/* 로딩 스피너 등 애니메이션 스타일 */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
