/*! Terra S077.40.7.6.23 — Desktop Settings Full List Hotfix
 * Keep the complete Settings menu reachable on desktop/laptop viewports.
 * Normal-height desktops show the full list; short viewports scroll inside the panel.
 */
@media (min-width:761px){
  .home-settings-panel{
    max-height:calc(100dvh - 96px);
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    scrollbar-gutter:stable;
    scrollbar-width:thin;
    padding:14px;
    gap:7px;
  }
  .home-settings-panel>.btn{
    min-height:42px;
    padding-top:9px;
    padding-bottom:9px;
  }
  .home-setting-row{gap:5px}
  .home-setting-row select{min-height:42px;padding-top:9px;padding-bottom:9px}
  .home-settings-title{padding-bottom:5px}
  .home-version{padding-top:2px}
}
@media (min-width:761px) and (max-height:720px){
  .home-settings-panel{max-height:calc(100dvh - 82px);padding:12px;gap:5px}
  .home-settings-panel>.btn{min-height:39px;padding-top:7px;padding-bottom:7px}
  .home-setting-row select{min-height:39px;padding-top:7px;padding-bottom:7px}
}
@supports not (height:100dvh){
  @media (min-width:761px){.home-settings-panel{max-height:calc(100vh - 96px)}}
  @media (min-width:761px) and (max-height:720px){.home-settings-panel{max-height:calc(100vh - 82px)}}
}
