@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

:root {
  --dash-bg: #0F1729;
  --dash-card: #1E293B;
  --dash-border: #334155;
  --dash-border-light: #475569;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

#root {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

html.scroll-locked, body.scroll-locked {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.btn-gradient {
  background: var(--theme-primary-gradient);
  box-shadow: var(--theme-primary-shadow);
  color: rgb(254, 243, 245);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 8px 16px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient:hover {
  opacity: 0.96;
}

.btn-gradient:active {
  transform: scale(0.98);
}
