#ran-popup-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: #333333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 999999;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

#ran-popup-container.ran-show {
    transform: translateX(0);
    opacity: 1;
}

.ran-icon {
    font-size: 20px;
    background: #e0f2fe;
    padding: 8px;
    border-radius: 50%;
}

#ran-message-text {
    font-weight: 500;
}

#ran-message-text strong {
    color: #0369a1; /* Highlights the name and amount */
}