/* 한국어 타이포그래피 */
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Noto Sans KR", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* 카드 호버 효과 */
.card {
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

/* 알림 메시지 */
.alert {
  border-radius: 0.5rem;
}

/* 폼 라벨 */
.form-label,
legend {
  font-weight: 500;
}

/* 소셜 로그인 버튼 */
.btn-outline-danger:hover {
  color: #fff;
}
.btn-outline-warning:hover {
  color: #000;
}

/* 거래내역 테이블 */
.table th {
  white-space: nowrap;
}

.amount-display {
  font-variant-numeric: tabular-nums;
  font-family: "Pretendard", monospace;
}
