/* 💡 Google Toast Notification Style */
.google-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background-color: #323133; /* ពណ៌ Charcoal ក្រម៉ៅបែប Google */
    color: #f5f5f5;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Google Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0, 0, 0.2, 1), opacity 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.google-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}