#sh-noti-container { position: fixed; z-index: 999999; display: none; transition: all 0.5s ease; }
.sh-pos-bottom-left { bottom: 20px; left: 20px; }
.sh-pos-bottom-right { bottom: 20px; right: 20px; }
#sh-noti-bubble {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none;
    /* Không để background-color và color ở đây để PHP/JS điều khiển */
    transition: transform 0.2s ease;
}

#sh-noti-bubble:hover {
    transform: scale(1.02);
}
.sh-avatar-img { width: 45px; height: 45px; border-radius: 50%; margin-right: 12px; object-fit: cover; }
.sh-info { font-size: 13px; }
.sh-info small { display: block; opacity: 0.7; font-size: 11px; margin-top: 2px; }
#sh-close-btn { position: absolute; top: 5px; right: 8px; cursor: pointer; font-size: 16px; opacity: 0.3; }
/* Trạng thái mặc định: Ẩn */
#sh-noti-container { 
    display: none; 
    position: fixed; 
    z-index: 999999; 
    opacity: 0;
}

/* Hiệu ứng Mờ dần */
.sh-fade { animation: shFadeIn 0.5s forwards; }
@keyframes shFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Hiệu ứng Trượt lên */
.sh-slide-up { animation: shSlideUp 0.5s forwards; }
@keyframes shSlideUp { 
    from { opacity: 0; transform: translateY(50px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Hiệu ứng Trượt từ phải qua */
.sh-slide-right { animation: shSlideRight 0.5s forwards; }
@keyframes shSlideRight { 
    from { opacity: 0; transform: translateX(50px); } 
    to { opacity: 1; transform: translateX(0); } 
}

/* Hiệu ứng Phóng to */
.sh-zoom { animation: shZoomIn 0.5s forwards; }
@keyframes shZoomIn { 
    from { opacity: 0; transform: scale(0.8); } 
    to { opacity: 1; transform: scale(1); } 
}

/* Khi ẩn: Thêm class này bằng JS để tạo hiệu ứng biến mất mượt */
.sh-hide { opacity: 0; transition: opacity 0.5s ease; }
@media (max-width: 600px) { #sh-noti-container { left: 10px; right: 10px; bottom: 10px; } #sh-noti-bubble { width: 100%; } }