.save-blog-btn {
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-blog-btn:hover svg {
    transform: scale(1.05);
}

.save-icon {
    transition: all 0.2s ease;
}

.custom-notification {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}