.single-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.multi-line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.display-none {
  display: none;
}

.group:hover .group-hover\:opacity-50 {
  opacity: 50% !important;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 100% !important;
}

.toastr-position {
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
}

.toastr-position>.toast {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 450px) {
  .\32 sm\:display-none {
    max-width: 450px;
  }
}

@media (min-width: 640px) {
  .sm\:display-none {
    display: none;
  }
}

@media (min-width: 768px) {
  .md\:display-none {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .lg\:display-none {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .xl\:display-none {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .\32 xl\:display-none {
    max-width: 1536px;
  }
}

.grey-text {
  color: grey !important;
}

/* 텍스트 버튼 스타일 */
.text-link-btn {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #999;
  font-family: 'Inter', 'Open Sans', sans-serif;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 8px 0;
  cursor: pointer;
  background: none;
  border: none;
}

.text-link-btn:hover {
  color: #666;
  text-decoration: underline;
}