/* === Extracted from AdminModule (block 1) === */
.adm-toggle{position:relative;display:inline-block;width:40px;height:22px;flex-shrink:0;}
.adm-toggle input{opacity:0;width:0;height:0;}
.adm-toggle-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;
  background:#444;border-radius:22px;transition:.2s;}
.adm-toggle-slider:before{position:absolute;content:"";height:16px;width:16px;left:3px;bottom:3px;
  background:#aaa;border-radius:50%;transition:.2s;}
.adm-toggle input:checked + .adm-toggle-slider{background:#6366f1;}
.adm-toggle input:checked + .adm-toggle-slider:before{transform:translateX(18px);background:#fff;}
.adm-toggle input:disabled + .adm-toggle-slider{opacity:0.5;cursor:not-allowed;}

/* === Inline from AdminModule (block 2) === */
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.5}}
