.scr-notice-container {
    position: fixed;
    top: 20px;
    right: 20px; /* پیش‌فرض برای LTR/RTL بهتر است راست باشد */
    z-index: 100001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

/* اگر سایت راست‌چین است، چپ نشان بده (اختیاری) */
[dir="rtl"] .scr-notice-container {
    right: auto;
    left: 20px;
}

.scr-notice {
    pointer-events: auto;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(50px);
    opacity: 0;
    animation: toastEnter 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; /* افکت فنری */
    border-left: 4px solid transparent;
}

.scr-notice--success { border-left-color: #10b981; }
.scr-notice--error { border-left-color: #ef4444; }

.scr-notice-icon { font-size: 1.2rem; }

.scr-notice-message {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.scr-notice-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 16px;
    padding: 2px;
    transition: color 0.2s;
}
.scr-notice-close:hover { color: #1f2937; }

@keyframes toastEnter {
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scr-fade-out {
    to { opacity: 0; transform: translateY(-20px); }
}