/* woody-toast.css
   Shared transient page toast — extracted from the inline .page-toast
   pattern that used to live inside woody-ranking.html, woody-my-profile.html
   and woody-settings.css. All three now consume this file instead.

   Visual is byte-identical to the pre-extraction pattern: forest bg, cream
   text, 1.5px black border, 4px black box-shadow, no rounded corners.
   z-index picks the higher of the two prior values (250) so the toast
   layers correctly above the modals on woody-my-profile.html. */

.page-toast {
  position: fixed;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-dark);
  color: var(--off-white);
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  max-width: calc(100% - 40px);
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.page-toast.is-shown { opacity: 1; }
