/* ✅ 개인정보 수집 링크 스타일 */
.privacy-link {
  color: #0d6efd !important;  /* 부트스트랩 기본 파랑 */
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-link:hover {
  color: #0b5ed7 !important; /* hover 시 더 진한 파랑 */
}

/* ✅ 개인정보 수집 체크박스 줄 (체크박스 + 텍스트 한 줄 정렬) */
.form-check-group {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 4px;  /* ✅ 기존 10px → 4px 로 줄임 */
}


/* ✅ 체크박스 스타일 */
.form-check-group input[type="checkbox"] {
  margin: 0;
  transform: scale(1.1);
  cursor: pointer;
}

/* ✅ 개인정보 수집 모달 스타일 */
.privacy-modal-content {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Pretendard', Arial, sans-serif;
}

.privacy-modal-content .modal-title {
  font-weight: bold;
  color: #333;
}

.privacy-modal-content .modal-body {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.privacy-modal-content .modal-footer .btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: bold;
}

.privacy-modal-content .modal-footer .btn-primary:hover {
  background-color: #0b5ed7;
}
/* 체크박스 및 텍스트 정렬 및 여백 */
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 링크 스타일 조정 */
.privacy-link {
  font-weight: 500;
}
/* style.css 또는 해당 CSS 파일에 추가 */
.privacy-link {
  font-weight: bold;
}
