
/* assets/css/settings.css */
#settingsSheet {
  position: fixed; left:0; right:0; bottom:0; top:0;
  background: rgba(0,0,0,.5);
  display: none; z-index: 1060;
}
#settingsSheet.show { display: block; }
#settingsSheet .panel{
  position: absolute; left:0; right:0; bottom:0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px;
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
}
#settingsSheet .handle{
  width: 48px; height: 5px; background: #ddd; border-radius: 999px;
  margin: 6px auto 12px;
}
#settingsSheet .list-group-item { border: 0; }
