/* ============================================
   INLINE NOTIFICATION (Minimalista)
   ============================================ */
.inline-notification {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    color: var(--text-primary);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.inline-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.inline-notification svg {
    width: 18px;
    height: 18px;
    stroke: #00c9a7;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.inline-notification span {
    font-weight: 500;
    white-space: nowrap;
}