/* ✅ PC/모바일 어디서든 #goTop 강제 표시 */
#goTop {
  position: fixed !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;

  /* 크기와 모양 */
  width: 40px;
  height: 40px;
  border-radius: 50%;

  /* 스타일 */
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;

  /* 표시 관련 */
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 99999 !important;
}

/* ✅ 모바일 크기 조정 */
@media (max-width: 768px) {
  #goTop {
    width: 36px;
    height: 36px;
    right: 8px !important;
  }
}
