/* ==========================================================================
   DrinkInTheWeeds – Global inline overrides
   CSS modules are now loaded as individual <link asp-append-version="true">
   tags in _Layout.cshtml so every file gets its own cache-busting hash.
   Only rules that don't belong in a component file live here.
   ========================================================================== */

/* Search dropdown (global search widget) */
.navbar-search-wrapper { position: relative; display: inline-block; }
.global-search-dropdown { min-width: 260px; background: white; padding: 8px; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 6px 18px rgba(0,0,0,0.08); border-radius: 6px; }
.global-search-dropdown .form-control { width: 100%; }

/* Small drink card: locked icon state for unauthenticated users.
   pointer-events removed so the .action-locked-wrap title tooltip can fire. */
.small-drink-card__icon-btn--disabled,
.small-drink-card__icon-btn[disabled],
.small-drink-card__icon-btn.disabled {
    color: var(--color-neutral-400) !important;
    opacity: 1;
    cursor: not-allowed;
}

