/*
 * Module      : Utils (styles)
 * Description : Shared utility styles: the toast notification and its shown
 *               state.
 */

.toast {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding: 10px 18px;
  background: var(--vn-surface);
  background-clip: padding-box;
  border: 11px solid var(--vn-line);
  border-image: var(--lace-border) 15 stretch;
  border-radius: var(--radius);
  color: var(--vn-ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(230, 181, 168,0.3);
  transition: opacity 0.25s, transform 0.3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(6px); }
