.notification {
    position: fixed;
    top: 60px;
    right: -350px;
    width: 300px;
    padding: 30px 20px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    font-size: 14px;
}

.notification.success {
    background-color: #d4edda;
}

.notification.error {
    background-color: #f8d7da;
}

.notification.show {
    right: 40px;
}