/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #535353 #202425;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 14px;
  }

  *::-webkit-scrollbar-track {
    background: #202425;
    z-index: 100;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #535353;
    border-radius: 7px;
    border: 3px none #535353;
    z-index: 101;
  }
  ::selection {
    background-color: #e67e22;
    color: white;
  }