/*
 * User 네임스페이스 전용 CSS
 * 사용자 대시보드에서만 사용되는 스타일
 */

/* User 전용 스타일 */
.user-dashboard {
  /* 사용자 대시보드 전용 스타일 */
}

/* 사용자 프로필 스타일 */
.user-profile {
  /* 프로필 전용 스타일 */
}

/* 전역 버튼 커서 스타일 */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
[role="button"] {
  cursor: pointer;
}