#kakao-button-stack {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 1000;
  transform: scale(0.9);
  transform-origin: bottom right;
}

.kakao-link-button img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

#kakao-talk-channel-chat-button {
  position: static;
}

#kakao-talk-channel-add-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
}

/* 모바일에서 위치 및 크기 조정 */
@media (max-width: 768px) {
  #kakao-button-stack {
    bottom: 12px;
    right: 15px;
    transform: scale(0.8); /* 80% 크기로 줄임 */
    transform-origin: bottom right; /* 우측 하단 기준으로 크기 조정 */
  }
}