:root {
    --primary: #3498db;
    --secondary: #2ecc71;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --bg-color: #d9e4f0;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(73, 177, 245, 0.2);
  border-radius: 2em;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: #009ff7;
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.4) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.4) 75%,
    transparent 75%
  );
  border-radius: 2em;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}