.notification-success {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: rgb(22, 101, 52);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    opacity: 0;
    z-index: 9999;
    min-width: 320px;
    max-width:90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-success.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}