body {
  background: #ffffff;
}

/* ====== Scrollbar WebKit (Chrome, Edge, Safari) ====== */
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: #214284;
}
::-webkit-scrollbar-thumb {
  background-color: #1B3143;
  border-radius: 6px;
  border: 2px solid #1F4E40;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #346083;
  transform: scale(1.1);
}

/* ====== Scrollbar Firefox ====== */
html {
  scrollbar-color: #214284 #1B3143;
  scrollbar-width: auto;
}