﻿/* استایل نوتیفیکیشن */
.notification {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.5s ease;
}

    .notification.show {
        top: 20px;
        opacity: 1;
    }
