
  .spinner-overlay.svelte-nfip4v {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dim background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: none; /* Let clicks pass through if needed, or 'auto' to block */
  }
  .spinner.svelte-nfip4v {
    width: 40px; height: 40px;
    border: 4px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: svelte-nfip4v-spin 1s linear infinite;
  }
  @keyframes svelte-nfip4v-spin { to { transform: rotate(360deg); } }


  .tippy-box[data-theme~='fm'] {
    background-color: var(--color-fm-red);
    color: white;
    border-radius: 4px;
    padding: 3px 9px;
  }
  
