/* Desktop access to Greg Mode's horizontally scrolling quick-pick rail. */
@media (min-width: 760px) {
  .greg-mode__prompts {
    padding-bottom: 0.8rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(105, 200, 255, 0.82) rgba(5, 17, 30, 0.78);
  }

  .greg-mode__prompts::-webkit-scrollbar {
    height: 7px;
  }

  .greg-mode__prompts::-webkit-scrollbar-track {
    margin-inline: max(1rem, calc((100vw - 54rem) / 2));
    border-radius: 999px;
    background: rgba(5, 17, 30, 0.78);
    box-shadow: inset 0 0 0 1px rgba(143, 212, 255, 0.12);
  }

  .greg-mode__prompts::-webkit-scrollbar-thumb {
    min-width: 3rem;
    border: 1px solid rgba(5, 17, 30, 0.9);
    border-radius: 999px;
    background: linear-gradient(90deg, #3aa7e8, #8fd4ff);
    box-shadow: 0 0 8px rgba(58, 167, 232, 0.3);
  }

  .greg-mode__prompts::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #5dbbf0, #b8e5ff);
  }

  .greg-mode__prompts:focus-visible {
    outline: 1px solid rgba(143, 212, 255, 0.72);
    outline-offset: -1px;
  }
}
