/* Custom utilities */
@layer utilities {
  .scroll-smooth {
    scroll-behavior: smooth;
  }
}

/* Selection styles */
::selection {
  background-color: #7b39ff;
  color: white;
}

::-moz-selection {
  background-color: #7b39ff;
  color: white;
}

/* Dark mode selections */
.dark ::selection {
  background-color: #220066;
  color: white;
}

.dark ::-moz-selection {
  background-color: #220066;
  color: white;
}