#shrareLink {
  display: inline-block;
  background: url(./share-btn.svg) no-repeat;
  height: 48px;
  width: 48px;
  background-size: 48px;
  background-position: center;
  position: absolute;
  right: 8px;
  top: 52px;
  z-index: 9999;
  cursor: pointer;
  transition: var(--ease-1s);
}

/* 배경 전체 오버레이 */
.modal__share-link {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.share-link__share {
  background: white;
  width: 360px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.share-group {
    position: relative;
    padding: 15px 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 20px 20px 20px;
}

.share__close-box {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}

.share__close-box a::before {
  content: '×';
  font-size: 24px;
  color: #333;
}

.share__title-box {
  padding: 0px 15px 20px 20px;
}

.share__title-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: bold;
}

#share-btn {
  margin-bottom: 20px;
}

#share-btn img {
  width: 32px;
  height: 32px;
}

.share-link__copy-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-link__copy-link-url {
  display: block;
  padding: 10px;
  background-color: #f5f5f5;
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  word-break: break-all;
  overflow-y: auto;
}

.bTnshare-link__copy {
  background-color: #000;
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.bTnshare-link__copy:hover {
  background-color: #333;
}

@media screen and (max-width: 576px) {
  #shrareLink {
    top: 3px;
  }
}