.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.connecting-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #2d2d2d;
  color: #ffffff;
  font-family: sans-serif;
}

.connecting-title {
  font-size: 1.5em;
  font-weight: bold;
}

.connecting-description {
  text-align: center;
  max-width: 80%;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
  background: #232323;
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
  border: 2px solid #232323;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}

::-webkit-scrollbar-track {
  background: #232323;
  border-radius: 6px;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #444 #232323;
}

@import "tailwindcss";