/* Runtime-only styles for markup generated/toggled by public/js/script.js. Keep only rules that cannot live in Blade without changing JS. */
.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s;
}

.autocomplete-item:last-child { border-bottom: none; }

.autocomplete-item:hover,
.autocomplete-item.focused { background: #eff6ff; }

.autocomplete-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.autocomplete-info { flex: 1; min-width: 0; }

.autocomplete-info strong {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.autocomplete-info strong mark {
    padding: 0 2px;
    border-radius: 3px;
    background: #dbeafe;
    color: #2563eb;
}

.autocomplete-info span {
    color: #64748b;
    font-size: 12px;
}

.autocomplete-empty {
    padding: 20px 16px;
    color: #64748b;
    font-size: 13px;
    text-align: center;
}

#subscribeInput:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,.07) inset;
    -webkit-text-fill-color: white;
}

@keyframes sectionPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,99,235,.35); }
    50% { box-shadow: 0 0 0 18px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.section-highlight {
    animation: sectionPulse .9s ease-out;
    border-radius: 4px;
}
