/*
 * THE DROP INVITATION, restrained: the accent ring reads as the edge of the
 * landing area and the wash tints the region behind its content. Both are
 * box-shadow and background — zero layout impact, so nothing shifts mid-drag.
 *
 * A region whose child is a FUNCTION draws its own state (that is what the
 * function is for), so it publishes `data-dragover` and paints nothing.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-file-drop-target {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }

  .lotics-file-drop-target[data-dragover]:not([data-custom]) {
    border-radius: var(--lotics-radius-control);
    background-color: var(--lotics-accent-wash);
    box-shadow:
      0 0 0 1.5px var(--lotics-accent),
      0 0 0 6px var(--lotics-accent-wash);
  }
}
