body {
  font-family: "Poppins", sans-serif;
  background-color: #f3f4f6;
}
.container {
  max-width: 1200px;
}
.drag-item {
  cursor: move;
}
.drag-item.dragging {
  opacity: 0.5;
}

/* Custom scrollbar  */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: #e0f7fa;
}

::-webkit-scrollbar-thumb {
  background: #06b6d4;
  border-radius: 5px;
  min-height: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0891b2;
}

::-webkit-scrollbar-track {
  background: #e0f7fa;
  border-radius: 5px;
}

::-webkit-scrollbar-corner {
  background: #e0f7fa;
}

::-webkit-scrollbar-button {
  background: #06b6d4;
  height: 16px;
  width: 16px;
  border-radius: 3px;
  border: none;
}

::-webkit-scrollbar-button:vertical:increment,
::-webkit-scrollbar-button:horizontal:increment {
  background: #0891b2;
}

::-webkit-scrollbar-button:vertical:decrement,
::-webkit-scrollbar-button:horizontal:decrement {
  background: #06b6d4;
}

/* Firefox scrollbar styles */
@media (min-width: 1025px) {
  .toRight {
    width: 200px;
    position: relative;
    right: -250px;
  }

}
* {
  scrollbar-width: thin;
  scrollbar-color: #06b6d4 #e0f7fa;
}

