.notification {
    position: fixed;
    top: 7rem;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
}

.notification.success {
    background: #39913d;
}

.notification.warn {
    background: #ff7b00f6;
}

.notification.error {
    background: #d32f2f;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}
