/* Paint one Home-sized Ice Silver frame around the entire embedded module. */
body[data-route="account"] .user-panel-inline {
  position:relative;
  overflow:visible;
  isolation:isolate;
}
body[data-route="account"] .user-panel-inline::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  border:1px solid transparent;
  border-image-source:url("../assets/silver-ice-window-frame-v1.svg");
  border-image-slice:180 200;
  border-image-width:36px 40px;
  border-image-outset:18px;
  border-image-repeat:stretch;
}
.panel-shell { border:0;box-shadow:none; }
.panel-shell::after { content:none; }
@media(max-width:940px) {
  body[data-route="account"] .user-panel-inline::after {
    border-image-width:28px 30px;
    border-image-outset:7px;
  }
}
@media(max-width:560px) {
  body[data-route="account"] .user-panel-inline::after {
    border-image-width:14px 14px;
    border-image-outset:4px;
  }
}
