/* Simple Notification Styles */
.simple-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
    max-width: 350px;
}

.simple-notification.success {
    background: #28a745;
    color: white;
}

.simple-notification.error {
    background: #dc3545;
    color: white;
}

.simple-notification.info {
    background: #17a2b8;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.simple-notification.fade-out {
    animation: fadeOut 0.3s ease-out;
}

/* RTL Support */
html[dir="rtl"] .simple-notification {
    right: auto;
    left: 20px;
}

html[dir="rtl"] @keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
