/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./app/global-styles.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ref-link:hover {
  color: #ea580c !important;
  text-decoration: underline !important;
}

.chat-input-placeholder::placeholder {
  font-family: "Schibsted Grotesk", sans-serif;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(115, 115, 115, 0.5) transparent;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(115, 115, 115, 0.5);
  border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(115, 115, 115, 0.7);
}

[data-theme="light"] * {
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

[data-theme="light"] *::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] *::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* 即将上线提示：对话气泡 */
.tooltip-wrap {
  position: relative;
  display: inline-block;
}
.coming-soon-tooltip {
  position: absolute;
  padding: 8px 12px;
  background: rgba(55, 65, 81, 0.88);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.coming-soon-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}
.tooltip-wrap:hover .coming-soon-tooltip {
  opacity: 1;
  visibility: visible;
}
/* 气泡在按钮下方，尾巴朝上 */
.coming-soon-tooltip.bubble-below {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
}
.coming-soon-tooltip.bubble-below::after {
  bottom: 100%;
  left: 50%;
  margin-left: -6px;
  border-bottom-color: rgba(55, 65, 81, 0.88);
  border-top: none;
}
/* 气泡在按钮右侧，尾巴朝左 */
.coming-soon-tooltip.bubble-right {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
}
.coming-soon-tooltip.bubble-right::after {
  left: 0;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  border-right-color: rgba(55, 65, 81, 0.88);
  border-left: none;
}

