/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 11 2023 | 15:32:57 */
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #da974b #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #da974b;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }