#recent-donation-popup {
    position: fixed;
    bottom: var(--recent-popup-bottom, 20px); 
    left: 20px;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 396px;
    height: 96px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-100%); /* start di luar kiri */
    transition: transform 0.4s ease, opacity 0.4s ease;    
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
#recent-donation-popup.show {
    opacity: 1;
    transform: translateY(0);
}
#recent-donation-popup .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #FB9A00;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

#donation-thumb{
    width: 96px;
    height: 96px;
    object-fit: cover;
    display: block;
    display:none;
}

.donation-content {
    padding: 16px 16px;
    display: inline-block;
    vertical-align: middle;
}

#recent-donation-popup strong {
    font-weight: 600;
}

#recent-donation-popup small {
    font-size: 12px;
    color: #666;
}

/* Styles for screens wider than 600px (tablets and desktops) */
@media (max-width: 440px) {
  #recent-donation-popup {
    /* left: 10px; */
    width: calc(100% - 40px);
  }
}