.spell-quick-picker {
  position: fixed;
  inset: auto;
  margin: 0;
  box-sizing: border-box;
  width: min(350px, calc(100vw - 20px));
  max-height: min(510px, calc(100dvh - 20px));
  overflow-y: auto;
  padding: 14px;
  border: 1px solid #b6a16e;
  border-radius: 8px;
  background: #15202b;
  color: #fff0ce;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}
.spell-quick-picker::backdrop { background: transparent; }
.spell-quick-picker header { display: flex; align-items: start; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.spell-quick-picker h3 { margin: 0; font-size: 18px; }
.spell-quick-picker p { margin: 4px 0 0; color: #e2dac9; font-size: 13px; }
.spell-quick-picker [data-quick-close] { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 4px; background: #303b47; color: #fff0ce; cursor: pointer; }
.spell-quick-picker [data-quick-close] svg { display: block; width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }
.quick-spell-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.quick-spell-grid button { min-width: 0; min-height: 100px; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; gap: 4px; border: 1px solid #52616b; border-radius: 4px; color: #fff0ce; background: #222a32; cursor: pointer; }
.quick-spell-grid button:hover:enabled { background: #303b47; border-color: #f2cd6c; }
.quick-spell-grid button:disabled { cursor: default; color: #bfc4c5; background: #19232b; border-color: #35434d; }
.quick-spell-grid button:disabled .quick-spell-art { opacity: .5; }
.quick-spell-art, .quick-spell-art > * { display: block; width: 40px; height: 40px; }
.quick-spell-grid strong { font-size: 12px; line-height: 1.15; text-align: center; overflow-wrap: anywhere; }
.quick-spell-grid small { font-size: 11px; }
.spell-quick-picker button:focus-visible { outline: 3px solid #f2cd6c; outline-offset: 1px; }
.spell-quick-picker .quick-spell-empty { margin-top: 12px; }
.quick-spell-error:empty { display: none; }
